add Object::Dispose

Mathieu Lacage 2007-05-02 09:16:32 +02:00
parent 9eaf9191d8
commit fb6b984be4
2 changed files with 5 additions and 0 deletions

View File

@ -63,4 +63,8 @@ Object::IsSingle (void)
return m_count == 1;
}
void
Object::Dispose (void)
{}
}//namespace ns3

View File

@ -33,6 +33,7 @@ public:
void Ref (void);
void Unref (void);
bool IsSingle (void);
virtual void Dispose (void);
private:
uint32_t m_count;
};