12 lines
115 B
C++
12 lines
115 B
C++
#ifndef _CONCEPT_H
|
|
#define _CONCEPT_H
|
|
|
|
#include <mentalEntity.h>
|
|
|
|
class Concept
|
|
: public MentalEntity
|
|
{
|
|
};
|
|
|
|
#endif
|