27ff4a3a0a
All Cologexes (both Cologexes and CologexSets) are now categorized as Concepts. Goals are now also Concepts -- they inherit from Concept as a base class. Using Concept as the base class for both Cologex and CologexSet allows us to treat both cologexes and cologexsets the same way when comparing in the abstract.
19 lines
206 B
C++
19 lines
206 B
C++
#ifndef _GOAL_H
|
|
#define _GOAL_H
|
|
|
|
#include <concept.h>
|
|
|
|
namespace smo {
|
|
|
|
class Goal
|
|
: public cologex::Concept
|
|
{
|
|
public:
|
|
Goal() = default;
|
|
~Goal() = default;
|
|
};
|
|
|
|
} // namespace smo
|
|
|
|
#endif // _GOAL_H
|