summaryrefslogtreecommitdiff
path: root/apps/drwho/SM_Server.h
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1998-09-13 00:28:23 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1998-09-13 00:28:23 +0000
commit40c229c8bd507b8ad25125e75c5d477800273068 (patch)
tree0099758312186731c20a74437a2a888dfc8bb6d2 /apps/drwho/SM_Server.h
parentb83d24d85a208c4ee539b428d3fc5e361bc2aeca (diff)
downloadATCD-40c229c8bd507b8ad25125e75c5d477800273068.tar.gz
*** empty log message ***
Diffstat (limited to 'apps/drwho/SM_Server.h')
-rw-r--r--apps/drwho/SM_Server.h34
1 files changed, 19 insertions, 15 deletions
diff --git a/apps/drwho/SM_Server.h b/apps/drwho/SM_Server.h
index fbad338adf9..83aa063cd72 100644
--- a/apps/drwho/SM_Server.h
+++ b/apps/drwho/SM_Server.h
@@ -1,7 +1,20 @@
/* -*- C++ -*- */
// $Id$
-#ifndef _SM_SERVER_H
+// ============================================================================
+//
+// = LIBRARY
+// drwho
+//
+// = FILENAME
+// SM_Server.h
+//
+// = AUTHOR
+// Douglas C. Schmidt
+//
+// ============================================================================
+
+#if !defined (_SM_SERVER_H)
#define _SM_SERVER_H
#include "PM_Server.h"
@@ -10,23 +23,14 @@
class SM_Server : public Select_Manager, public CM_Server
{
-private:
- PM_Server *pm_server;
-
public:
- SM_Server (void);
- virtual ~SM_Server (void);
+ SM_Server (void);
+ virtual ~SM_Server (void);
virtual int mux (char *packet, int &packet_length);
virtual int demux (char *packet, int &packet_length);
-};
-#ifdef __OPTIMIZE__
-inline
-SM_Server::SM_Server (void)
-{}
+private:
+ PM_Server *pm_server;
+};
-inline
-SM_Server::~SM_Server (void)
-{}
-#endif /* __OPTIMIZE__ */
#endif /* _SM_SERVER_H */