#ifndef COMPONENT_H #define COMPONENT_H #include #include #include #include namespace smo { class Mind; class ComponentThread; class Component { public: Component(const std::shared_ptr &thread); ~Component() = default; public: std::shared_ptr thread; public: }; class MindComponent : public Component { public: MindComponent(Mind &parent, const std::shared_ptr &thread); ~MindComponent() = default; public: Mind &parent; }; } // namespace smo #endif // COMPONENT_H