summaryrefslogtreecommitdiff
path: root/ace/Dynamic_Service_Base.cpp
diff options
context:
space:
mode:
authornobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-04-10 19:59:37 +0000
committernobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-04-10 19:59:37 +0000
commit3df4acfa816441fc28a95dee6d0191a927145d95 (patch)
treeb5ae7ca44662cfd8e5c95f1826e4406021a606f5 /ace/Dynamic_Service_Base.cpp
parent60a5612b83d856fc0adc52b9f39fac9960ec9818 (diff)
downloadATCD-pre-subset.tar.gz
This commit was manufactured by cvs2svn to create tag 'pre-subset'.pre-subset
Diffstat (limited to 'ace/Dynamic_Service_Base.cpp')
-rw-r--r--ace/Dynamic_Service_Base.cpp42
1 files changed, 0 insertions, 42 deletions
diff --git a/ace/Dynamic_Service_Base.cpp b/ace/Dynamic_Service_Base.cpp
deleted file mode 100644
index ab4b1bc5a62..00000000000
--- a/ace/Dynamic_Service_Base.cpp
+++ /dev/null
@@ -1,42 +0,0 @@
-#include "ace/Dynamic_Service_Base.h"
-#include "ace/Service_Config.h"
-#include "ace/Service_Repository.h"
-#include "ace/Service_Types.h"
-#include "ace/Log_Msg.h"
-
-
-ACE_RCSID (ace,
- Dynamic_Service_Base,
- "$Id$")
-
-
-void
-ACE_Dynamic_Service_Base::dump (void) const
-{
- ACE_TRACE ("ACE_Dynamic_Service_Base::dump");
-
- ACE_DEBUG ((LM_DEBUG, ACE_BEGIN_DUMP, this));
- ACE_DEBUG ((LM_DEBUG, ACE_LIB_TEXT ("\n")));
- ACE_DEBUG ((LM_DEBUG, ACE_END_DUMP));
-}
-
-// Get the instance using <name>.
-
-void *
-ACE_Dynamic_Service_Base::instance (const ACE_TCHAR *name)
-{
- ACE_TRACE ("ACE_Dynamic_Service_Base::instance");
- const ACE_Service_Type *svc_rec;
-
- if (ACE_Service_Repository::instance ()->find (name,
- &svc_rec) == -1)
- return 0;
-
- const ACE_Service_Type_Impl *type = svc_rec->type ();
-
- if (type == 0)
- return 0;
-
- void *obj = type->object ();
- return obj;
-}