Files
salmanoff/smocore/include/body/body.h
T

30 lines
537 B
C++
Raw Normal View History

#ifndef _BODY_COMPONENT_H
#define _BODY_COMPONENT_H
#include <spinscale/puppetApplication.h>
2025-12-26 01:18:39 -04:00
#include <spinscale/component.h>
2026-02-22 17:46:27 -04:00
#include <mindComponent.h>
#include <body/bodyThread.h>
namespace smo {
class Mind;
namespace body {
class Body
2026-02-22 17:46:27 -04:00
: public MindComponent
{
public:
Body(Mind &parent, const std::shared_ptr<sscl::PuppetThread> &thread);
~Body() = default;
BodyViralPostingInvoker<bool> initializeCReq();
BodyViralPostingInvoker<bool> finalizeCReq();
};
} // namespace body
} // namespace smo
#endif // _BODY_COMPONENT_H