diff options
Diffstat (limited to 'tests/Param_Test/client.h')
-rw-r--r-- | tests/Param_Test/client.h | 64 |
1 files changed, 31 insertions, 33 deletions
diff --git a/tests/Param_Test/client.h b/tests/Param_Test/client.h index 8e9e0ec58d7..05bcee0d1e0 100644 --- a/tests/Param_Test/client.h +++ b/tests/Param_Test/client.h @@ -1,21 +1,17 @@ -// -*- c++ -*- -// $Id$ - -// ============================================================================ -// -// = LIBRARY -// TAO/tests/Param_Test -// -// = FILENAME -// client.h -// -// = DESCRIPTION -// Header file for the Param_Test client application. -// -// = AUTHORS -// Aniruddha Gokhale -// -// ============================================================================ + +//============================================================================= +/** + * @file client.h + * + * $Id$ + * + * Header file for the Param_Test client application. + * + * + * @author Aniruddha Gokhale + */ +//============================================================================= + #ifndef PARAM_TEST_CLIENT_H #define PARAM_TEST_CLIENT_H @@ -25,18 +21,20 @@ #include "param_testC.h" #include "results.h" +/** + * @class Param_Test_Client + * + * @brief Param_Test_Client + * + * This class declares an interface to run the example client for + * Param_Test CORBA server. All the complexity for initializing + * the client is hidden in the class. Just the run () interface + * is needed. The template class does the specific work of making + * the request of the desired data type + */ template <class T> class Param_Test_Client { - // = TITLE - // Param_Test_Client - // - // = DESCRIPTION - // This class declares an interface to run the example client for - // Param_Test CORBA server. All the complexity for initializing - // the client is hidden in the class. Just the run () interface - // is needed. The template class does the specific work of making - // the request of the desired data type public: typedef T TEST_OBJECT; @@ -47,24 +45,24 @@ public: ~Param_Test_Client (void); + /// run the SII test int run_sii_test (void); - // run the SII test + /// run the DII test int run_dii_test (void); - // run the DII test private: + /// underlying ORB CORBA::ORB_ptr orb_; - // underlying ORB + /// param test object reference Param_Test_ptr param_test_; - // param test object reference + /// object doing the actual work TEST_OBJECT *test_object_; - // object doing the actual work + /// results Results results_; - // results }; #if defined (ACE_TEMPLATES_REQUIRE_SOURCE) |