summaryrefslogtreecommitdiff
path: root/tests/Object_Loader/Test_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Object_Loader/Test_i.h')
-rw-r--r--tests/Object_Loader/Test_i.h40
1 files changed, 19 insertions, 21 deletions
diff --git a/tests/Object_Loader/Test_i.h b/tests/Object_Loader/Test_i.h
index e9a7edf00bb..e9efeb48bce 100644
--- a/tests/Object_Loader/Test_i.h
+++ b/tests/Object_Loader/Test_i.h
@@ -1,17 +1,14 @@
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// TAO/tests/Object_Loader
-//
-// = FILENAME
-// Test_i.h
-//
-// = AUTHOR
-// Carlos O'Ryan
-//
-// ============================================================================
+
+//=============================================================================
+/**
+ * @file Test_i.h
+ *
+ * $Id$
+ *
+ * @author Carlos O'Ryan
+ */
+//=============================================================================
+
#ifndef TAO_OBJECT_LOADER_TEST_I_H
#define TAO_OBJECT_LOADER_TEST_I_H
@@ -19,16 +16,17 @@
#include "TestS.h"
#include "OLT_Export.h"
+/**
+ * @class Test_i
+ *
+ * @brief Implement the Test interface
+ *
+ */
class OLT_Export Test_i : public POA_Test
{
- // = TITLE
- // Implement the Test interface
- //
- // = DESCRIPTION
- //
public:
+ /// ctor
Test_i (PortableServer::POA_ptr poa);
- // ctor
CORBA::Long instance_count (void);
@@ -37,8 +35,8 @@ public:
PortableServer::POA_ptr _default_POA (void);
private:
+ /// The default POA used for this object
PortableServer::POA_var poa_;
- // The default POA used for this object
static CORBA::Long instance_count_;
};