summaryrefslogtreecommitdiff
path: root/ace/Service_Types.i
diff options
context:
space:
mode:
authornobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-01-06 06:50:37 +0000
committernobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-01-06 06:50:37 +0000
commit2f662b966b933653ee11f5b2f58c9be06dd3925f (patch)
treec59f73afa48ded43058e918c7414ac6186302a95 /ace/Service_Types.i
parentde8d5cc38b9acbfa8f0f4acf5d7453698876f3b8 (diff)
downloadATCD-2f662b966b933653ee11f5b2f58c9be06dd3925f.tar.gz
This commit was manufactured by cvs2svn to create tag 'ACE_4_4_32'.ACE_4_4_32
Diffstat (limited to 'ace/Service_Types.i')
-rw-r--r--ace/Service_Types.i50
1 files changed, 0 insertions, 50 deletions
diff --git a/ace/Service_Types.i b/ace/Service_Types.i
deleted file mode 100644
index 27543964e17..00000000000
--- a/ace/Service_Types.i
+++ /dev/null
@@ -1,50 +0,0 @@
-/* -*- C++ -*- */
-// $Id$
-
-// Service_Record.i
-
-ACE_INLINE const void *
-ACE_Service_Type_Impl::object (void) const
-{
- ACE_TRACE ("ACE_Service_Type_Impl::object");
- return this->obj_;
-}
-
-ACE_INLINE const char *
-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 char *n)
-{
- ACE_TRACE ("ACE_Service_Type_Impl::name");
-
- delete [] (char *) this->name_;
- ACE_NEW (this->name_, char[::strlen (n) + 1]);
- ACE_OS::strcpy ((char *) this->name_, n);
-}
-
-ACE_INLINE int
-ACE_Service_Object_Type::suspend (void) const
-{
- ACE_TRACE ("ACE_Service_Object_Type::suspend");
- return ((ACE_Service_Object *) this->object ())->suspend ();
-}
-
-ACE_INLINE int
-ACE_Service_Object_Type::resume (void) const
-{
- ACE_TRACE ("ACE_Service_Object_Type::resume");
- return ((ACE_Service_Object *) this->object ())->resume ();
-}
-
-ACE_INLINE int
-ACE_Service_Object_Type::info (char **str, size_t len) const
-{
- ACE_TRACE ("ACE_Service_Object_Type::info");
- return ((ACE_Service_Object *) this->object ())->info (str, len);
-}
-