25 lines
536 B
C++
25 lines
536 B
C++
|
|
#ifndef _FANTASY_ARTIFICED_MENTAL_PHENOMENON_H
|
||
|
|
#define _FANTASY_ARTIFICED_MENTAL_PHENOMENON_H
|
||
|
|
|
||
|
|
#include "artificedMentalPhenomenon.h"
|
||
|
|
|
||
|
|
namespace smo {
|
||
|
|
|
||
|
|
class FictionalFantasyArtificedMentalPhenomenon
|
||
|
|
: public FantasyArtificedMentalPhenomenon
|
||
|
|
{
|
||
|
|
};
|
||
|
|
|
||
|
|
typedef FictionalFantasyArtificedMentalPhenomenon Fictenon;
|
||
|
|
|
||
|
|
class AspirationFantasyArtificedMentalPhenomenon
|
||
|
|
: public FantasyArtificedMentalPhenomenon
|
||
|
|
{
|
||
|
|
};
|
||
|
|
|
||
|
|
typedef AspirationFantasyArtificedMentalPhenomenon Aspanon;
|
||
|
|
|
||
|
|
} // namespace smo
|
||
|
|
|
||
|
|
#endif // _FANTASY_ARTIFICED_MENTAL_PHENOMENON_H
|