summaryrefslogtreecommitdiff
path: root/TAO/examples/Load_Balancing_persistent/Load_Balancing_Service.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/Load_Balancing_persistent/Load_Balancing_Service.h')
-rw-r--r--TAO/examples/Load_Balancing_persistent/Load_Balancing_Service.h56
1 files changed, 28 insertions, 28 deletions
diff --git a/TAO/examples/Load_Balancing_persistent/Load_Balancing_Service.h b/TAO/examples/Load_Balancing_persistent/Load_Balancing_Service.h
index f855506d106..bfec42f33f2 100644
--- a/TAO/examples/Load_Balancing_persistent/Load_Balancing_Service.h
+++ b/TAO/examples/Load_Balancing_persistent/Load_Balancing_Service.h
@@ -1,21 +1,18 @@
-// $Id$
// -*- C++ -*-
-// ============================================================================
-//
-// = LIBRARY
-// TAO/examples/Load_Balancing
-//
-// = FILENAME
-// Load_Balancing_Service.h
-//
-// = DESCRIPTION
-// Driver for Load Balancing service.
-//
-// = AUTHORS
-// Marina Spivak <marina@cs.wustl.edu>
-// with modifications by Bala Natarajan <bala@cs.wustl.edu>
-// ============================================================================
+//=============================================================================
+/**
+ * @file Load_Balancing_Service.h
+ *
+ * $Id$
+ *
+ * Driver for Load Balancing service.
+ *
+ *
+ * @author Marina Spivak <marina@cs.wustl.edu> with modifications by Bala Natarajan <bala@cs.wustl.edu>
+ */
+//=============================================================================
+
#ifndef LOAD_BALANCING_SERVICE_H_
#define LOAD_BALANCING_SERVICE_H_
@@ -26,36 +23,39 @@
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
+/**
+ * @class Load_Balancing_Service
+ *
+ * Server, which creates and initializes a
+ * <Load_Balancer::Object_Group_Factory>
+ * object, and runs the orb loop.
+ */
class Load_Balancing_Service
{
- // =TITLE
- // Server, which creates and initializes a
- // <Load_Balancer::Object_Group_Factory>
- // object, and runs the orb loop.
public:
+ /// Default constructor.
Load_Balancing_Service (void);
- // Default constructor.
+ /// Destructor.
~Load_Balancing_Service (void);
- // Destructor.
+ /// Initialize the <Load_Balancing_Service>: initializes the ORB, parses
+ /// arguments, creates a servant ...
int init (int argc, ACE_TCHAR *argv[]);
- // Initialize the <Load_Balancing_Service>: initializes the ORB, parses
- // arguments, creates a servant ...
+ /// Run the server.
int run (void);
- // Run the server.
private:
+ /// Parses the commandline arguments.
int parse_args (int argc, ACE_TCHAR *argv[]);
- // Parses the commandline arguments.
+ /// The ORB manager.
TAO_ORB_Manager orb_manager_;
- // The ORB manager.
+ /// File to output the <Object_Group_Factory> IOR.
FILE *ior_output_file_;
- // File to output the <Object_Group_Factory> IOR.
};
#endif /* LOAD_BALANCING_SERVICE_H_ */