25 lines
507 B
C++
25 lines
507 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 Ficten, Fictena;
|
|
|
|
class AspirationFantasyArtificedMentalPhenomenon
|
|
: public FantasyArtificedMentalPhenomenon
|
|
{
|
|
};
|
|
|
|
typedef AspirationFantasyArtificedMentalPhenomenon Aspan, Aspana;
|
|
|
|
} // namespace smo
|
|
|
|
#endif
|