diff --git a/hcore/include/singlecept.h b/hcore/include/singlecept.h new file mode 100644 index 0000000..9591ee7 --- /dev/null +++ b/hcore/include/singlecept.h @@ -0,0 +1,19 @@ +#ifndef _SINGLECEPT_H +#define _SINGLECEPT_H + +#include +#include + +class Singlecept +: public MentalEntity +{ +public: + Singlecept() = default; + ~Singlecept() = default; + + Singlecept(const implix::Implix&) { + // Conversion logic from Implix to Singlecept + } +}; + +#endif