foobar2000 SDK  2015-08-03
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 236 of file other.h.

Constructor & Destructor Documentation

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

Definition at line 238 of file other.h.

238  : m_obj(&obj) {
239  m_next = m_obj->m_data;
240  m_obj->m_data = this;
241  }
objDestructNotifyData * m_next
Definition: other.h:217
pfc::objDestructNotifyScope::~objDestructNotifyScope ( )
inline

Definition at line 242 of file other.h.

242  {
243  if (!m_flag) m_obj->m_data = m_next;
244  }
objDestructNotifyData * m_next
Definition: other.h:217

Member Function Documentation

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

Definition at line 245 of file other.h.

245 {return m_flag;}

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