Implement DynamicObject::Stop().

This commit is contained in:
Gunnar Beutner 2013-03-12 13:48:37 +01:00
parent 3c363499bb
commit 69a2842d4e
2 changed files with 3 additions and 0 deletions

View File

@ -393,6 +393,8 @@ void DynamicObject::OnUnregistrationCompleted(void)
{
ASSERT(!OwnsLock());
Stop();
OnUnregistered(GetSelf());
}

View File

@ -82,6 +82,7 @@ public:
void Unregister(void);
virtual void Start(void);
virtual void Stop(void);
const AttributeMap& GetAttributes(void) const;