mirror of
https://github.com/mangosfour/server.git
synced 2025-12-25 22:37:04 +00:00
Imported MaNGOS revision 6767 from http://mangos.svn.sourceforge.net/svnroot/mangos/trunk/
This commit is contained in:
parent
d767495d5b
commit
800ee76535
3322 changed files with 903437 additions and 0 deletions
33
dep/ACE_wrappers/ace/Framework_Component_T.cpp
Normal file
33
dep/ACE_wrappers/ace/Framework_Component_T.cpp
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
// $Id: Framework_Component_T.cpp 80826 2008-03-04 14:51:23Z wotte $
|
||||
|
||||
#ifndef ACE_FRAMEWORK_COMPONENT_T_CPP
|
||||
#define ACE_FRAMEWORK_COMPONENT_T_CPP
|
||||
|
||||
#include "ace/Framework_Component_T.h"
|
||||
|
||||
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
|
||||
|
||||
template <class Concrete>
|
||||
ACE_Framework_Component_T<Concrete>::ACE_Framework_Component_T (Concrete *concrete)
|
||||
: ACE_Framework_Component ((void *) concrete, concrete->dll_name (), concrete->name ())
|
||||
{
|
||||
ACE_TRACE ("ACE_Framework_Component_T<Concrete>::ctor");
|
||||
}
|
||||
|
||||
template <class Concrete>
|
||||
ACE_Framework_Component_T<Concrete>::~ACE_Framework_Component_T (void)
|
||||
{
|
||||
ACE_TRACE ("ACE_Framework_Component_T<Concrete>::~ACE_Framework_Component_T");
|
||||
Concrete::close_singleton ();
|
||||
}
|
||||
|
||||
template <class Concrete> void
|
||||
ACE_Framework_Component_T<Concrete>::close_singleton (void)
|
||||
{
|
||||
ACE_TRACE ("ACE_Framework_Component_T<Concrete>::close_singleton");
|
||||
Concrete::close_singleton ();
|
||||
}
|
||||
|
||||
ACE_END_VERSIONED_NAMESPACE_DECL
|
||||
|
||||
#endif /* ACE_FRAMEWORK_COMPONENT_T_CPP */
|
||||
Loading…
Add table
Add a link
Reference in a new issue