20 lines
253 B
C++
20 lines
253 B
C++
#ifndef _GOAL_H
|
|
#define _GOAL_H
|
|
|
|
#include <concept.h>
|
|
#include <mentalEntity.h>
|
|
|
|
namespace smo {
|
|
|
|
class Goal
|
|
: public cologex::Concept, public MentalEntity
|
|
{
|
|
public:
|
|
Goal() = default;
|
|
~Goal() = default;
|
|
};
|
|
|
|
} // namespace smo
|
|
|
|
#endif // _GOAL_H
|