#include <Framework_Component.h>
Inheritance diagram for ACE_Framework_Component:
Public Member Functions | |
ACE_Framework_Component (void *_this, const ACE_TCHAR *dll_name=0, const ACE_TCHAR *name=0) | |
Constructor. | |
virtual void | close_singleton (void)=0 |
Close the contained singleton. | |
Protected Member Functions | |
virtual | ~ACE_Framework_Component (void) |
Destructor. | |
Private Member Functions | |
ACE_Framework_Component (const ACE_Framework_Component &) | |
void | operator= (const ACE_Framework_Component &) |
Private Attributes | |
const void * | this_ |
Pointer to the actual component. | |
const ACE_TCHAR * | dll_name_ |
Library associated with this component. | |
const ACE_TCHAR * | name_ |
Component name. | |
Friends | |
class | ACE_Framework_Repository |
Definition at line 59 of file Framework_Component.h.
|
Constructor.
Definition at line 11 of file Framework_Component.inl. References ACE_TCHAR, ACE_TEXT, and ACE_TRACE.
|
|
Destructor.
Definition at line 20 of file Framework_Component.cpp. References ACE_TRACE, and ACE::strdelete().
00021 { 00022 ACE_TRACE ("ACE_Framework_Component::~ACE_Framework_Component"); 00023 00024 ACE::strdelete (const_cast<ACE_TCHAR*> (this->dll_name_)); 00025 ACE::strdelete (const_cast<ACE_TCHAR*> (this->name_)); 00026 } |
|
|
|
Close the contained singleton.
Implemented in ACE_Framework_Component_T< Concrete >. |
|
|
|
Definition at line 62 of file Framework_Component.h. |
|
Library associated with this component.
Definition at line 86 of file Framework_Component.h. |
|
Component name.
Definition at line 89 of file Framework_Component.h. |
|
Pointer to the actual component.
Definition at line 83 of file Framework_Component.h. Referenced by ACE_Framework_Repository::register_component(). |