summaryrefslogtreecommitdiff
path: root/netsvcs/lib/Name_Handler.h
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-08-30 13:30:40 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-08-30 13:30:40 +0000
commit47251a571c609ee3595b622ee2a0c61371ced494 (patch)
treefbe7507743f2a260dbaf4f3f3f68320d2ee67d65 /netsvcs/lib/Name_Handler.h
parent070da35a2459585079b6d9f1df82792fa97963ab (diff)
downloadATCD-47251a571c609ee3595b622ee2a0c61371ced494.tar.gz
added #include of ace/Singleton.h
Diffstat (limited to 'netsvcs/lib/Name_Handler.h')
-rw-r--r--netsvcs/lib/Name_Handler.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/netsvcs/lib/Name_Handler.h b/netsvcs/lib/Name_Handler.h
index 92507c968cc..7f028bcecb5 100644
--- a/netsvcs/lib/Name_Handler.h
+++ b/netsvcs/lib/Name_Handler.h
@@ -5,13 +5,13 @@
//
// = LIBRARY
// ace
-//
+//
// = FILENAME
// Name_Handler.h
//
// = AUTHOR
// Prashant Jain, Gerhard Lenzer, and Douglas C. Schmidt
-//
+//
// ============================================================================
#if !defined (ACE_NAME_HANDLER_H)
@@ -22,7 +22,7 @@
#include "ace/SString.h"
#include "ace/Naming_Context.h"
#include "ace/Name_Request_Reply.h"
-
+#include "ace/Singleton.h"
// This helper class adds the correct default constructor to the
// ACE_Naming_Context class so that we can use it in ACE_Singleton.
@@ -81,11 +81,11 @@ protected:
virtual int recv_request (void);
// Receive, frame, and decode the client's request.
-
+
virtual int dispatch (void);
// Dispatch the appropriate operation to handle the client's
// request.
-
+
virtual int send_reply (ACE_UINT32 status, ACE_UINT32 errnum = 0);
// Create and send a reply to the client.
@@ -108,7 +108,7 @@ private:
OPERATION op_table_[ACE_Name_Request::MAX_ENUM];
// Table of pointers to member functions
-
+
struct LIST_ENTRY
{
LIST_OP operation_;
@@ -122,7 +122,7 @@ private:
char *description_;
// Name of the operation we're dispatching (used for debugging).
};
-
+
LIST_ENTRY list_table_[ACE_Name_Request::MAX_LIST];
// This is the table of pointers to functions that we use to
// simplify the handling of list requests.