add NsUnknown::Dispose
parent
0db7be7cb8
commit
5b4433d50b
|
@ -136,6 +136,12 @@ NsUnknown::Unref (void)
|
|||
m_impl->Unref ();
|
||||
}
|
||||
|
||||
void
|
||||
NsUnknown::Dispose (void)
|
||||
{
|
||||
// we do not do anything by default.
|
||||
}
|
||||
|
||||
void
|
||||
NsUnknown::RefInternal (void)
|
||||
{
|
||||
|
|
|
@ -58,6 +58,8 @@ public:
|
|||
* will be found by the same reference count.
|
||||
*/
|
||||
void AddInterface (NsUnknown *interface);
|
||||
|
||||
virtual void Dispose (void);
|
||||
protected:
|
||||
/**
|
||||
* \param iid the Interface Id of the interface defined by a direct subclass
|
||||
|
|
Loading…
Reference in New Issue