summaryrefslogtreecommitdiff
path: root/tests/Bug_2734_Regression/test_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Bug_2734_Regression/test_i.h')
-rw-r--r--tests/Bug_2734_Regression/test_i.h42
1 files changed, 20 insertions, 22 deletions
diff --git a/tests/Bug_2734_Regression/test_i.h b/tests/Bug_2734_Regression/test_i.h
index 8c102e3a1b7..eb3d07084a5 100644
--- a/tests/Bug_2734_Regression/test_i.h
+++ b/tests/Bug_2734_Regression/test_i.h
@@ -1,34 +1,32 @@
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// TAO/tests/Timeout
-//
-// = FILENAME
-// test_i.h
-//
-// = AUTHOR
-// Carlos O'Ryan
-//
-// ============================================================================
+
+//=============================================================================
+/**
+ * @file test_i.h
+ *
+ * $Id$
+ *
+ * @author Carlos O'Ryan
+ */
+//=============================================================================
+
#ifndef TAO_TIMEOUT_TEST_I_H
#define TAO_TIMEOUT_TEST_I_H
#include "testS.h"
+/**
+ * @class Simple_Server_i
+ *
+ * @brief Simpler Server implementation
+ *
+ * Implements the Simple_Server interface in test.idl
+ */
class Simple_Server_i : public POA_Simple_Server
{
- // = TITLE
- // Simpler Server implementation
- //
- // = DESCRIPTION
- // Implements the Simple_Server interface in test.idl
- //
public:
+ /// ctor
Simple_Server_i (CORBA::ORB_ptr orb);
- // ctor
// = The Simple_Server methods.
CORBA::Long echo (CORBA::Long x,
@@ -36,8 +34,8 @@ public:
void shutdown (void);
private:
+ /// The ORB
CORBA::ORB_var orb_;
- // The ORB
};
#endif /* TAO_TIMEOUT_TEST_I_H */