summaryrefslogtreecommitdiff
path: root/TAO/examples/Simple/time/Time_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/Simple/time/Time_i.h')
-rw-r--r--TAO/examples/Simple/time/Time_i.h56
1 files changed, 0 insertions, 56 deletions
diff --git a/TAO/examples/Simple/time/Time_i.h b/TAO/examples/Simple/time/Time_i.h
deleted file mode 100644
index a4d17a315dd..00000000000
--- a/TAO/examples/Simple/time/Time_i.h
+++ /dev/null
@@ -1,56 +0,0 @@
-// -*- C++ -*-
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// TAO/tests/Simple/time
-//
-// = FILENAME
-// Time_i.h
-//
-// = DESCRIPTION
-// This class implements the Time IDL interface.
-//
-// = AUTHOR
-// Darrell Brunsch <brunsch@cs.wustl.edu>
-//
-// ============================================================================
-
-#if !defined (TIME_I_H)
-#define TIME_I_H
-
-#include "TimeS.h"
-
-class Time_i: public POA_Time
-{
- // = TITLE
- // Time Object Implementation
- //
- // = DESCRIPTION
- // Implementation of a simple object that has two methods, one that
- // return the current time/date on the server and the other that
- // shuts down the server.
-public:
- // = Initialization and termination methods.
- Time_i (void);
- // Constructor
-
- ~Time_i (void);
- // Destructor
-
- virtual CORBA::Long time (CORBA::Environment &env);
- // Return the current time/date on the server.
-
- virtual void shutdown (CORBA::Environment &env);
- // Shutdown the server.
-
- void orb (CORBA::ORB_ptr o);
- // Set the ORB pointer.
-
-private:
- CORBA::ORB_var orb_;
- // ORB pointer.
-};
-
-#endif /* TIME_I_H */