25 lines
506 B
C++
25 lines
506 B
C++
|
|
#ifndef _FANTASY_ARTIFICED_MENTAL_EXISTENT_H
|
||
|
|
#define _FANTASY_ARTIFICED_MENTAL_EXISTENT_H
|
||
|
|
|
||
|
|
#include "artificedMentalExistent.h"
|
||
|
|
|
||
|
|
namespace smo {
|
||
|
|
|
||
|
|
class FictionalFantasyArtificedMentalExistent
|
||
|
|
: public FantasyArtificedMentalExistent
|
||
|
|
{
|
||
|
|
};
|
||
|
|
|
||
|
|
typedef FictionalFantasyArtificedMentalExistent Fictaxent, FictFantixent;
|
||
|
|
|
||
|
|
class AspirationFantasyArtificedMentalExistent
|
||
|
|
: public FantasyArtificedMentalExistent
|
||
|
|
{
|
||
|
|
};
|
||
|
|
|
||
|
|
typedef AspirationFantasyArtificedMentalExistent Aspixent, AsFantixent;
|
||
|
|
|
||
|
|
} // namespace smo
|
||
|
|
|
||
|
|
#endif
|