summaryrefslogtreecommitdiff
path: root/tests/CSD_Collocation/Collocation_Tester.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/CSD_Collocation/Collocation_Tester.h')
-rw-r--r--tests/CSD_Collocation/Collocation_Tester.h39
1 files changed, 19 insertions, 20 deletions
diff --git a/tests/CSD_Collocation/Collocation_Tester.h b/tests/CSD_Collocation/Collocation_Tester.h
index 8756a731843..025f0398008 100644
--- a/tests/CSD_Collocation/Collocation_Tester.h
+++ b/tests/CSD_Collocation/Collocation_Tester.h
@@ -1,18 +1,17 @@
-// $Id$
-
-//============================================================================
-//
-// = FILENAME
-// Collocation_Test.h
-//
-// = DESCRIPTION
-// Server class to perform testing of TAO's collocation mechanism.
-//
-// = AUTHOR
-// Nanbor Wang
-//
+
+//=============================================================================
+/**
+ * @file Collocation_Tester.h
+ *
+ * $Id$
+ *
+ * Server class to perform testing of TAO's collocation mechanism.
+ *
+ * @author Nanbor Wang
+ */
//=============================================================================
+
#if !defined (TAO_COLLOCATION_TEST_H)
#define TAO_COLLOCATION_TEST_H
@@ -29,18 +28,18 @@ public:
void shutdown (void);
+ /// Initializing the Collocation_Test object.
int init (int argc, ACE_TCHAR *argv[]);
- // Initializing the Collocation_Test object.
+ /// Parse the test specific arguments.
int parse_args (int argc, ACE_TCHAR *argv[]);
- // Parse the test specific arguments.
+ /// This test narrow an object reference to its base class and see
+ /// if it works correctly.
int test_narrow (void);
- // This test narrow an object reference to its base class and see
- // if it works correctly.
+ /// Run the test.
int run (void);
- // Run the test.
private:
CORBA::ORB_var orb_;
@@ -49,14 +48,14 @@ private:
PortableServer::POAManager_var poa_manager_;
+ /// Our basic test object.
CORBA::Object_var diamond_obj_;
- // Our basic test object.
+ /// A collection of servant for basic narrowing test.
Top_i top_servant_;
Left_i left_servant_;
Right_i right_servant_;
Buttom_i diamond_servant_;
- // A collection of servant for basic narrowing test.
};
#endif /* TAO_COLLOCATION_TEST_H */