summaryrefslogtreecommitdiff
path: root/ace/Service_Types.inl
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Service_Types.inl')
-rw-r--r--ace/Service_Types.inl32
1 files changed, 0 insertions, 32 deletions
diff --git a/ace/Service_Types.inl b/ace/Service_Types.inl
deleted file mode 100644
index 9ebfd705ced..00000000000
--- a/ace/Service_Types.inl
+++ /dev/null
@@ -1,32 +0,0 @@
-// -*- C++ -*-
-//
-// $Id$
-
-#include "ace/ACE.h"
-
-ACE_BEGIN_VERSIONED_NAMESPACE_DECL
-
-ACE_INLINE void *
-ACE_Service_Type_Impl::object (void) const
-{
- ACE_TRACE ("ACE_Service_Type_Impl::object");
- return this->obj_;
-}
-
-ACE_INLINE const ACE_TCHAR *
-ACE_Service_Type_Impl::name (void) const
-{
- ACE_TRACE ("ACE_Service_Type_Impl::name");
- return this->name_;
-}
-
-ACE_INLINE void
-ACE_Service_Type_Impl::name (const ACE_TCHAR *n)
-{
- ACE_TRACE ("ACE_Service_Type_Impl::name");
-
- ACE::strdelete (const_cast<ACE_TCHAR*> (this->name_));
- this->name_ = ACE::strnew (n);
-}
-
-ACE_END_VERSIONED_NAMESPACE_DECL