Update for Autogoalation
This commit is contained in:
+12
-2
@@ -1,17 +1,27 @@
|
|||||||
#ifndef _GOAL_H
|
#ifndef _GOAL_H
|
||||||
#define _GOAL_H
|
#define _GOAL_H
|
||||||
|
|
||||||
#include <concept.h>
|
|
||||||
#include <mentalEntity.h>
|
#include <mentalEntity.h>
|
||||||
|
#include <user/cologex.h>
|
||||||
|
|
||||||
namespace smo {
|
namespace smo {
|
||||||
|
|
||||||
class Goal
|
class Goal
|
||||||
: public cologex::Concept, public MentalEntity
|
: public MentalEntity
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
Goal() = default;
|
Goal() = default;
|
||||||
~Goal() = default;
|
~Goal() = default;
|
||||||
|
|
||||||
|
public:
|
||||||
|
};
|
||||||
|
|
||||||
|
class AutoGoal
|
||||||
|
: public Goal
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
AutoGoal() = default;
|
||||||
|
~AutoGoal() = default;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace smo
|
} // namespace smo
|
||||||
|
|||||||
Reference in New Issue
Block a user