#ifndef _BODY_COMPONENT_H #define _BODY_COMPONENT_H #include #include #include #include namespace smo { class Mind; namespace body { class Body : public MindComponent { public: Body(Mind &parent, const std::shared_ptr &thread); ~Body() = default; BodyViralPostingInvoker initializeCReq(); BodyViralPostingInvoker finalizeCReq(); }; } // namespace body } // namespace smo #endif // _BODY_COMPONENT_H