mindThread: remove parent ref; might remove class entirely
This commit is contained in:
@@ -12,19 +12,12 @@ class MindThread
|
||||
: public sscl::PuppetThread
|
||||
{
|
||||
public:
|
||||
MindThread(sscl::ThreadId _id, Mind& parent)
|
||||
: sscl::PuppetThread(_id),
|
||||
parent(parent)
|
||||
{
|
||||
}
|
||||
|
||||
Mind& getParent() const { return parent; }
|
||||
MindThread(sscl::ThreadId _id)
|
||||
: sscl::PuppetThread(_id)
|
||||
{}
|
||||
|
||||
protected:
|
||||
void handleException() override;
|
||||
|
||||
public:
|
||||
Mind& parent;
|
||||
};
|
||||
|
||||
} // namespace smo
|
||||
|
||||
Reference in New Issue
Block a user