26 lines
360 B
C++
26 lines
360 B
C++
#ifndef MIND_THREAD_H
|
|
#define MIND_THREAD_H
|
|
|
|
#include <memory>
|
|
#include <componentThread.h>
|
|
|
|
namespace smo {
|
|
|
|
class Mind; // Forward declaration
|
|
|
|
class MindThread
|
|
: public sscl::PuppetThread
|
|
{
|
|
public:
|
|
MindThread(sscl::ThreadId _id)
|
|
: sscl::PuppetThread(_id)
|
|
{}
|
|
|
|
protected:
|
|
void handleException() override;
|
|
};
|
|
|
|
} // namespace smo
|
|
|
|
#endif // MIND_THREAD_H
|