summaryrefslogtreecommitdiff
path: root/TAO/tao/Codeset_Manager_Factory_Base.cpp
diff options
context:
space:
mode:
authorWilliam R. Otte <wotte@dre.vanderbilt.edu>2006-07-24 15:50:11 +0000
committerWilliam R. Otte <wotte@dre.vanderbilt.edu>2006-07-24 15:50:11 +0000
commit6b846cf03c0bcbd8c276cb0af61a181e5f98eaae (patch)
treeda50d054f9c761c3f6a5923f6979e93306c56d68 /TAO/tao/Codeset_Manager_Factory_Base.cpp
parent0e555b9150d38e3b3473ba325b56db2642e6352b (diff)
downloadATCD-6b846cf03c0bcbd8c276cb0af61a181e5f98eaae.tar.gz
Repo restructuring
Diffstat (limited to 'TAO/tao/Codeset_Manager_Factory_Base.cpp')
-rw-r--r--TAO/tao/Codeset_Manager_Factory_Base.cpp51
1 files changed, 0 insertions, 51 deletions
diff --git a/TAO/tao/Codeset_Manager_Factory_Base.cpp b/TAO/tao/Codeset_Manager_Factory_Base.cpp
deleted file mode 100644
index 96a37e46d02..00000000000
--- a/TAO/tao/Codeset_Manager_Factory_Base.cpp
+++ /dev/null
@@ -1,51 +0,0 @@
-// $Id$
-
-#include "tao/ORB_Core.h"
-#include "tao/Codeset_Manager.h"
-#include "tao/Codeset_Manager_Factory_Base.h"
-
-ACE_RCSID (tao,
- Codeset_Manager_Factory_Base,
- "$Id$")
-
-TAO_BEGIN_VERSIONED_NAMESPACE_DECL
-
-TAO_Codeset_Manager_Factory_Base::~TAO_Codeset_Manager_Factory_Base (void)
-{
-}
-
-bool
-TAO_Codeset_Manager_Factory_Base::is_default (void) const
-{
- return true;
-}
-
-TAO_Codeset_Manager *
-TAO_Codeset_Manager_Factory_Base::create (void)
-{
- return 0;
-
-}
-
-int
-TAO_Codeset_Manager_Factory_Base::initialize (void)
-{
- return ACE_Service_Config::process_directive
- (ace_svc_desc_TAO_Codeset_Manager_Factory_Base);
-}
-
-TAO_END_VERSIONED_NAMESPACE_DECL
-
-#if 0
-static int
-TAO_Requires_Codeset_Manager_Factory_Base =
-TAO_Codeset_Manager_Factory_Base::initialize ();
-#endif
-
-ACE_FACTORY_DEFINE (TAO, TAO_Codeset_Manager_Factory_Base)
-ACE_STATIC_SVC_DEFINE (TAO_Codeset_Manager_Factory_Base,
- ACE_TEXT ("TAO_Codeset"),
- ACE_SVC_OBJ_T,
- &ACE_SVC_NAME (TAO_Codeset_Manager_Factory_Base),
- ACE_Service_Type::DELETE_THIS | ACE_Service_Type::DELETE_OBJ,
- 0)