foobar2000 SDK  2015-01-14
Public Member Functions
pfc::objDestructNotifyScope

#include <other.h>

+ Inheritance diagram for pfc::objDestructNotifyScope:

Public Member Functions

 objDestructNotifyScope (objDestructNotify &obj)
 
 ~objDestructNotifyScope ()
 
bool get () const
 

Additional Inherited Members

- Private Attributes inherited from pfc::objDestructNotifyData
bool m_flag
 
objDestructNotifyDatam_next
 

Detailed Description

Definition at line 228 of file other.h.

Constructor & Destructor Documentation

pfc::objDestructNotifyScope::objDestructNotifyScope ( objDestructNotify obj)
inline

Definition at line 230 of file other.h.

230  : m_obj(&obj) {
231  m_next = m_obj->m_data;
232  m_obj->m_data = this;
233  }
objDestructNotifyData * m_next
Definition: other.h:209
pfc::objDestructNotifyScope::~objDestructNotifyScope ( )
inline

Definition at line 234 of file other.h.

234  {
235  if (!m_flag) m_obj->m_data = m_next;
236  }
objDestructNotifyData * m_next
Definition: other.h:209

Member Function Documentation

bool pfc::objDestructNotifyScope::get ( ) const
inline

Definition at line 237 of file other.h.

237 {return m_flag;}

The documentation for this class was generated from the following file: