summaryrefslogtreecommitdiff
path: root/examples/Simple/time-date/Time_Date_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/Simple/time-date/Time_Date_i.h')
-rw-r--r--examples/Simple/time-date/Time_Date_i.h42
1 files changed, 19 insertions, 23 deletions
diff --git a/examples/Simple/time-date/Time_Date_i.h b/examples/Simple/time-date/Time_Date_i.h
index 47e9ef6c792..6b0f1280b65 100644
--- a/examples/Simple/time-date/Time_Date_i.h
+++ b/examples/Simple/time-date/Time_Date_i.h
@@ -1,22 +1,18 @@
// -*- C++ -*-
-//
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// TAO/tests/Simple/time_date
-//
-// = FILENAME
-// Time_Date_i.h
-//
-// = DESCRIPTION
-// This class implements the Time_Date IDL interface.
-//
-// = AUTHOR
-// Douglas C. Schmidt <schmidt@cs.wustl.edu> and Michael Kircher.
-//
-// ============================================================================
+
+//=============================================================================
+/**
+ * @file Time_Date_i.h
+ *
+ * $Id$
+ *
+ * This class implements the Time_Date IDL interface.
+ *
+ *
+ * @author Douglas C. Schmidt <schmidt@cs.wustl.edu> and Michael Kircher.
+ */
+//=============================================================================
+
#ifndef TIME_DATE_I_H
#define TIME_DATE_I_H
@@ -34,21 +30,21 @@ class Time_Date_i
public:
// = Initialization and termination methods.
+ /// Obtain the time and date in binary format.
virtual void bin_date (CORBA::Long_out time_date);
- // Obtain the time and date in binary format.
+ /// Obtain the time and date in string format.
virtual void str_date (CORBA::String_out time_date);
- // Obtain the time and date in string format.
+ /// Shutdown the server.
virtual void shutdown (void);
- // Shutdown the server.
+ /// ORB pointer.
void orb (CORBA::ORB_ptr orb_ptr);
- // ORB pointer.
private:
+ /// ORB pointer.
CORBA::ORB_var orb_var_;
- // ORB pointer.
};
#endif /* TIME_DATE_I_H */