summaryrefslogtreecommitdiff
path: root/ace/Service_Object.h
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1997-12-21 19:26:46 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1997-12-21 19:26:46 +0000
commit9e9254f32711d4ecf1e3f71b54982eaf6845388e (patch)
tree760551d54bece3e52d2f1cd3d05b26d9c1c1439b /ace/Service_Object.h
parent4ecd5d0edb663fdba4935912ccdbbf79a66482ae (diff)
downloadATCD-9e9254f32711d4ecf1e3f71b54982eaf6845388e.tar.gz
*** empty log message ***
Diffstat (limited to 'ace/Service_Object.h')
-rw-r--r--ace/Service_Object.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ace/Service_Object.h b/ace/Service_Object.h
index 0c83733f1e5..7dff02543e6 100644
--- a/ace/Service_Object.h
+++ b/ace/Service_Object.h
@@ -21,6 +21,7 @@
#include "ace/Event_Handler.h"
class ACE_Export ACE_Service_Object : public ACE_Event_Handler, public ACE_Shared_Object
+{
// = TITLE
// Provide the abstract base class common to all service
// implementations.
@@ -30,7 +31,6 @@ class ACE_Export ACE_Service_Object : public ACE_Event_Handler, public ACE_Share
// of being registered with the <ACE_Reactor> (due to the
// <ACE_Event_Handler>, as well as being dynamically linked by
// the <ACE_Service_Config> (due to the <ACE_Shared_Object>).
-{
public:
// = Initialization and termination methods.
ACE_Service_Object (void);
@@ -47,13 +47,13 @@ public:
class ACE_Service_Type_Impl;
class ACE_Export ACE_Service_Type
+{
// = TITLE
// Keeps track of information related to the various
// <ACE_Service_Type_Impl> subclasses.
//
// = DESCRIPTION
// This class acts as the interface of the "Bridge" pattern.
-{
public:
enum
{
@@ -107,6 +107,7 @@ private:
};
class ACE_Export ACE_Service_Object_Ptr
+{
// = TITLE
// This is a smart pointer that holds onto the associated
// <ACE_Service_Object> * until the current scope is left, at
@@ -117,7 +118,6 @@ class ACE_Export ACE_Service_Object_Ptr
// <auto_ptr>. It is used in conjunction with statically linked
// <ACE_Service_Objects>, as shown in the
// ./netsvcs/server/main.cpp example.
-{
public:
// = Initialization and termination methods.
ACE_Service_Object_Ptr (ACE_Service_Object *so);