diff options
author | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-12-11 06:01:44 +0000 |
---|---|---|
committer | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-12-11 06:01:44 +0000 |
commit | 29bc99605b3001024214877b685194229b053770 (patch) | |
tree | f893f1e4b64e027ecb12bd3ad323b84d9ba58a26 /ace/Service_Object.cpp | |
parent | 00318e0f86593079270e84624efbcac2b1285aff (diff) | |
download | ATCD-poa_start.tar.gz |
This commit was manufactured by cvs2svn to create tag 'poa_start'.poa_start
Diffstat (limited to 'ace/Service_Object.cpp')
-rw-r--r-- | ace/Service_Object.cpp | 83 |
1 files changed, 0 insertions, 83 deletions
diff --git a/ace/Service_Object.cpp b/ace/Service_Object.cpp deleted file mode 100644 index 7484cbf5813..00000000000 --- a/ace/Service_Object.cpp +++ /dev/null @@ -1,83 +0,0 @@ -// $Id$ - -// Service_Object.cpp - -#define ACE_BUILD_DLL -#include "ace/Service_Types.h" -#include "ace/Service_Object.h" - -#if !defined (__ACE_INLINE__) -#include "ace/Service_Object.i" -#endif /* __ACE_INLINE__ */ - -ACE_ALLOC_HOOK_DEFINE(ACE_Service_Object) -ACE_ALLOC_HOOK_DEFINE(ACE_Service_Type) - -void -ACE_Service_Type::dump (void) const -{ - ACE_TRACE ("ACE_Service_Type::dump"); -} - -ACE_Service_Type::ACE_Service_Type (const char *n, - ACE_Service_Type_Impl *t, - const ACE_SHLIB_HANDLE h, - int active) - : name_ (0), - type_ (t), - handle_ (h), - active_ (active) -{ - ACE_TRACE ("ACE_Service_Type::ACE_Service_Type"); - this->name (n); -} - -ACE_Service_Type::~ACE_Service_Type (void) -{ - ACE_TRACE ("ACE_Service_Type::~ACE_Service_Type"); - this->type_->fini (); - if (this->handle_ != 0) - ACE_OS::dlclose ((ACE_SHLIB_HANDLE) this->handle_); - delete [] (char *) this->name_; -} - -void -ACE_Service_Type::suspend (void) const -{ - ACE_TRACE ("ACE_Service_Type::suspend"); - ((ACE_Service_Type *) this)->active_ = 0; - this->type_->suspend (); -} - -void -ACE_Service_Type::resume (void) const -{ - ACE_TRACE ("ACE_Service_Type::resume"); - ((ACE_Service_Type *) this)->active_ = 1; - this->type_->resume (); -} - -ACE_Service_Object::ACE_Service_Object (void) -{ - ACE_TRACE ("ACE_Service_Object::ACE_Service_Object"); -} - -ACE_Service_Object::~ACE_Service_Object (void) -{ - ACE_TRACE ("ACE_Service_Object::~ACE_Service_Object"); -} - -int -ACE_Service_Object::suspend (void) -{ - ACE_TRACE ("ACE_Service_Object::suspend"); - return 0; -} - -int -ACE_Service_Object::resume (void) -{ - ACE_TRACE ("ACE_Service_Object::resume"); - return 0; -} - |