summaryrefslogtreecommitdiff
path: root/TAO/examples/Advanced/ch_3/server.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/Advanced/ch_3/server.h')
-rw-r--r--TAO/examples/Advanced/ch_3/server.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/TAO/examples/Advanced/ch_3/server.h b/TAO/examples/Advanced/ch_3/server.h
deleted file mode 100644
index 7536c0cae33..00000000000
--- a/TAO/examples/Advanced/ch_3/server.h
+++ /dev/null
@@ -1,32 +0,0 @@
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// TAO/examples/Advanced/ch_3
-//
-// = FILENAME
-// server.h
-//
-// = AUTHORS
-// Source code used in TAO has been modified and adapted from the code
-// provided in the book, "Advanced CORBA Programming with C++" by Michi
-// Henning and Steve Vinoski. Copyright 1999. Addison-Wesley, Reading,
-// MA. Used with permission of Addison-Wesley.
-//
-// Modified for TAO by Mike Moran <mm4@cs.wustl.edu>
-//
-// ============================================================================
-
-#ifndef server_HH_
-#define server_HH_
-
-#include "timeS.h"
-
-class Time_impl : public virtual POA_Time
-{
-public:
- virtual TimeOfDay get_gmt (void) throw (CORBA::SystemException);
-};
-
-#endif /* server_HH_ */