2024-11-21 02:31:37 +11:00
|
|
|
#ifndef _GOAL_H
|
|
|
|
|
#define _GOAL_H
|
|
|
|
|
|
2025-09-02 17:01:47 -04:00
|
|
|
#include <concept.h>
|
2024-11-21 02:31:37 +11:00
|
|
|
|
2025-07-22 06:48:04 -04:00
|
|
|
namespace smo {
|
2025-01-03 21:22:03 -04:00
|
|
|
|
2025-01-04 13:21:24 -04:00
|
|
|
class Goal
|
2025-10-05 21:15:55 -04:00
|
|
|
: public cologex::Concept
|
|
|
|
|
{
|
2025-01-03 21:22:03 -04:00
|
|
|
public:
|
2025-01-04 11:36:50 -04:00
|
|
|
Goal() = default;
|
2025-01-03 21:22:03 -04:00
|
|
|
~Goal() = default;
|
2024-11-21 02:31:37 +11:00
|
|
|
};
|
|
|
|
|
|
2025-07-22 06:48:04 -04:00
|
|
|
} // namespace smo
|
2024-11-21 02:31:37 +11:00
|
|
|
|
2025-10-05 21:15:55 -04:00
|
|
|
#endif // _GOAL_H
|