Initial Patch of Auction House bot rev. 135
[auctionmangos.git] / dep / ACE_wrappers / ace / Framework_Component_T.cpp
blob6f0be7b5e2a809debda8970f1b41cb1892090cc7
1 // $Id: Framework_Component_T.cpp 80826 2008-03-04 14:51:23Z wotte $
3 #ifndef ACE_FRAMEWORK_COMPONENT_T_CPP
4 #define ACE_FRAMEWORK_COMPONENT_T_CPP
6 #include "ace/Framework_Component_T.h"
8 ACE_BEGIN_VERSIONED_NAMESPACE_DECL
10 template <class Concrete>
11 ACE_Framework_Component_T<Concrete>::ACE_Framework_Component_T (Concrete *concrete)
12 : ACE_Framework_Component ((void *) concrete, concrete->dll_name (), concrete->name ())
14 ACE_TRACE ("ACE_Framework_Component_T<Concrete>::ctor");
17 template <class Concrete>
18 ACE_Framework_Component_T<Concrete>::~ACE_Framework_Component_T (void)
20 ACE_TRACE ("ACE_Framework_Component_T<Concrete>::~ACE_Framework_Component_T");
21 Concrete::close_singleton ();
24 template <class Concrete> void
25 ACE_Framework_Component_T<Concrete>::close_singleton (void)
27 ACE_TRACE ("ACE_Framework_Component_T<Concrete>::close_singleton");
28 Concrete::close_singleton ();
31 ACE_END_VERSIONED_NAMESPACE_DECL
33 #endif /* ACE_FRAMEWORK_COMPONENT_T_CPP */