2025-08-03 04:54:27 -04:00
|
|
|
#ifndef _MENTAL_EXISTENT_H
|
|
|
|
|
#define _MENTAL_EXISTENT_H
|
|
|
|
|
|
|
|
|
|
#include "mentalEntity.h"
|
|
|
|
|
|
|
|
|
|
namespace smo {
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* MentalExistents are content of the mind that specifically represents
|
|
|
|
|
* existents. I.e: perceptual data, whether structural or implicative. All
|
|
|
|
|
* Mentexents are Mentities, but not all Mentities are Mentexents.
|
|
|
|
|
*/
|
|
|
|
|
|
2025-08-03 05:23:05 -04:00
|
|
|
struct MentalExistent
|
2025-08-03 04:54:27 -04:00
|
|
|
: public MentalEntity
|
|
|
|
|
{
|
2025-08-03 05:23:05 -04:00
|
|
|
public:
|
|
|
|
|
MentalExistent(const MentalEntity::Id id)
|
|
|
|
|
: MentalEntity(id)
|
|
|
|
|
{}
|
2025-08-03 04:54:27 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
typedef MentalExistent Mentexent;
|
|
|
|
|
|
|
|
|
|
class ImplexedMentalExistent
|
|
|
|
|
: public MentalExistent
|
|
|
|
|
{
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
typedef ImplexedMentalExistent Implexent;
|
|
|
|
|
|
|
|
|
|
class ArtificedMentalExistent
|
|
|
|
|
: public MentalExistent
|
|
|
|
|
{
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
typedef ArtificedMentalExistent Artifixent, Artixent;
|
|
|
|
|
|
|
|
|
|
} // namespace smo
|
|
|
|
|
|
|
|
|
|
#endif
|