summaryrefslogtreecommitdiff
path: root/examples/Simple/echo/Echo_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/Simple/echo/Echo_i.h')
-rw-r--r--examples/Simple/echo/Echo_i.h65
1 files changed, 32 insertions, 33 deletions
diff --git a/examples/Simple/echo/Echo_i.h b/examples/Simple/echo/Echo_i.h
index b048eeb8357..5afd29de0b1 100644
--- a/examples/Simple/echo/Echo_i.h
+++ b/examples/Simple/echo/Echo_i.h
@@ -1,63 +1,62 @@
// -*- C++ -*-
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// TAO/tests/Simple/echo
-//
-// = FILENAME
-// Echo_i.h
-//
-// = DESCRIPTION
-// This class implements the Echo IDL interface.
-//
-// = AUTHOR
-// Kirthika Parameswaran <kirthika@cs.wustl.edu>
-//
-// ============================================================================
+
+//=============================================================================
+/**
+ * @file Echo_i.h
+ *
+ * $Id$
+ *
+ * This class implements the Echo IDL interface.
+ *
+ *
+ * @author Kirthika Parameswaran <kirthika@cs.wustl.edu>
+ */
+//=============================================================================
+
#ifndef ECHO_I_H
#define ECHO_I_H
#include "EchoS.h"
+/**
+ * @class Echo_i
+ *
+ * @brief Echo Object Implementation
+ *
+ * The object implementation performs teh following functions:
+ * -- To return the string which needs to be displayed
+ * from the server.
+ * -- shuts down the server
+ */
class Echo_i : public POA_Echo
{
- // = TITLE
- // Echo Object Implementation
- //
- // = DESCRIPTION
- // The object implementation performs teh following functions:
- // -- To return the string which needs to be displayed
- // from the server.
- // -- shuts down the server
public:
// = Initialization and termination methods.
+ /// Constructor.
Echo_i (void);
- // Constructor.
+ /// Destructor.
virtual ~Echo_i (void);
- // Destructor.
+ /// Return the mesg string back from the server.
virtual Echo::List *echo_list (const char *mesg);
- // Return the mesg string back from the server.
+ /// Return the mesg string back from the server.
virtual char *echo_string (const char *mesg);
- // Return the mesg string back from the server.
+ /// 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.
+ /// Keeping g++ 2.7.2 happy..
ACE_UNIMPLEMENTED_FUNC (void operator= (const Echo_i&))
- // Keeping g++ 2.7.2 happy..
};
#endif /* ECHO_I_H */