From 89c8936e64da2603a2ef8507d846548a963d8983 Mon Sep 17 00:00:00 2001 From: Hayodea Hakol Date: Sat, 4 Jan 2025 13:38:27 -0400 Subject: [PATCH] New class: Singlecept. Inherits from MentalEntity --- hcore/include/singlecept.h | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 hcore/include/singlecept.h 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