Concept,Cologex,Goal: refactor headers

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.
This commit is contained in:
2025-10-05 21:15:55 -04:00
parent eddee05e41
commit 27ff4a3a0a
3 changed files with 30 additions and 4 deletions
+14
View File
@@ -0,0 +1,14 @@
#ifndef _CONCEPT_H
#define _CONCEPT_H
namespace smo {
namespace cologex {
class Concept
{
};
} // namespace cologex
} // namespace smo
#endif // _CONCEPT_H