summaryrefslogtreecommitdiff
path: root/tests/Bug_2935_Regression/source_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Bug_2935_Regression/source_i.h')
-rw-r--r--tests/Bug_2935_Regression/source_i.h47
1 files changed, 23 insertions, 24 deletions
diff --git a/tests/Bug_2935_Regression/source_i.h b/tests/Bug_2935_Regression/source_i.h
index add472917c2..7c1e423ff82 100644
--- a/tests/Bug_2935_Regression/source_i.h
+++ b/tests/Bug_2935_Regression/source_i.h
@@ -1,35 +1,34 @@
// -*- C++ -*-
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// TAO/examples/Simple/ThreeTier
-//
-// = FILENAME
-// source_i.h
-//
-// = DESCRIPTION
-// This class implements the source for a three tier system
-// Adapted from TAO/examples/Simple/time
-//
-// = AUTHOR
-// Dale Wilson <wilsond@ociweb.com>
-//
-// ============================================================================
+
+//=============================================================================
+/**
+ * @file source_i.h
+ *
+ * $Id$
+ *
+ * This class implements the source for a three tier system
+ * Adapted from TAO/examples/Simple/time
+ *
+ *
+ * @author Dale Wilson <wilsond@ociweb.com>
+ */
+//=============================================================================
+
#ifndef SOURCE_I_H
#define SOURCE_I_H
#include "ThreeTierC.h"
+/**
+ * @class Source_i
+ *
+ * @brief Source interface subclass.
+ *
+ * a source of data for the three tier test
+ */
class Source_i
{
- // = TITLE
- // Source interface subclass.
- //
- // = DESCRIPTION
- // a source of data for the three tier test
public:
Source_i (ThreeTier_ptr target);
@@ -37,8 +36,8 @@ public:
bool parse_args(int argc, ACE_TCHAR *argv[]);
+ /// Execute the methods
int run ();
- // Execute the methods
private:
ThreeTier_var target_;