summaryrefslogtreecommitdiff
path: root/examples/OBV/Typed_Events/Server_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/OBV/Typed_Events/Server_i.h')
-rw-r--r--examples/OBV/Typed_Events/Server_i.h43
1 files changed, 19 insertions, 24 deletions
diff --git a/examples/OBV/Typed_Events/Server_i.h b/examples/OBV/Typed_Events/Server_i.h
index 8341c26165e..8e6c0002ce3 100644
--- a/examples/OBV/Typed_Events/Server_i.h
+++ b/examples/OBV/Typed_Events/Server_i.h
@@ -1,23 +1,18 @@
// -*- C++ -*-
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// TAO/tests/OBV/Typed_Events
-//
-// = FILENAME
-// Server_i.h
-//
-// = DESCRIPTION
-// This class implements the Event_Types IDL interface.
-//
-// = AUTHOR
-// Torsten Kuepper
-// derived from the Echo example TAO/example/Simple/echo
-// of Kirthika Parameswaran <kirthika@cs.wustl.edu>
-//
-// ============================================================================
+
+//=============================================================================
+/**
+ * @file Server_i.h
+ *
+ * $Id$
+ *
+ * This class implements the Event_Types IDL interface.
+ *
+ *
+ * @author Torsten Kuepper derived from the Echo example TAO/example/Simple/echo of Kirthika Parameswaran <kirthika@cs.wustl.edu>
+ */
+//=============================================================================
+
#ifndef ECHO_I_H
#define ECHO_I_H
@@ -29,11 +24,11 @@ class Checkpoint_i : public POA_Checkpoint
{
public:
// = Initialization and termination methods.
+ /// Constructor.
Checkpoint_i (void);
- // Constructor.
+ /// Destructor.
~Checkpoint_i (void);
- // Destructor.
virtual void put_event (
Event * e
@@ -42,15 +37,15 @@ public:
virtual Event_List * get_critical_events (
);
+ /// Shutdown the server.
virtual void shutdown (void);
- // Shutdown the server.
+ /// Set the ORB pointer.
void orb (CORBA::ORB_ptr o);
- // Set the ORB pointer.
private:
+ /// ORB pointer.
CORBA::ORB_var orb_;
- // ORB pointer.
};
#endif /* ECHO_I_H */