aec3cbedf2
This completes the functional work of splitting libspinscale off from SMO. Spinscale shouldn't have any real dependencies on SMO from here on out.
27 lines
506 B
C++
27 lines
506 B
C++
#ifndef MIND_THREAD_H
|
|
#define MIND_THREAD_H
|
|
|
|
#include <memory>
|
|
#include <componentThread.h>
|
|
|
|
namespace smo {
|
|
|
|
class MindThread
|
|
: public sscl::PuppetThread
|
|
{
|
|
public:
|
|
MindThread(
|
|
sscl::ThreadId _id, std::string name,
|
|
sscl::PuppetThread::entryPointFn entryPoint,
|
|
sscl::PuppetComponent &component,
|
|
sscl::PuppetThread::preJoltHookFn preJoltFn = nullptr)
|
|
: sscl::PuppetThread(
|
|
_id, std::move(name), std::move(entryPoint),
|
|
component, preJoltFn)
|
|
{}
|
|
};
|
|
|
|
} // namespace smo
|
|
|
|
#endif // MIND_THREAD_H
|