summaryrefslogtreecommitdiff
path: root/TAO/examples/OBV/Typed_Events/Server_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/OBV/Typed_Events/Server_i.h')
-rw-r--r--TAO/examples/OBV/Typed_Events/Server_i.h62
1 files changed, 0 insertions, 62 deletions
diff --git a/TAO/examples/OBV/Typed_Events/Server_i.h b/TAO/examples/OBV/Typed_Events/Server_i.h
deleted file mode 100644
index 00e14a571b2..00000000000
--- a/TAO/examples/OBV/Typed_Events/Server_i.h
+++ /dev/null
@@ -1,62 +0,0 @@
-// -*- C++ -*-
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// TAO/tests/OBV/Typed_Events
-//
-// = FILENAME
-// Server_i.h
-//
-// = DESCRIPTION
-// This class implements the Event_Types IDL interface.
-//
-// = AUTHOR
-// Torsten Kuepper
-// derived from the Echo example TAO/example/Simple/echo
-// of Kirthika Parameswaran <kirthika@cs.wustl.edu>
-//
-// ============================================================================
-
-#ifndef ECHO_I_H
-#define ECHO_I_H
-
-#include "Event_TypesS.h"
-
-
-class Checkpoint_i : public POA_Checkpoint
-{
-public:
- // = Initialization and termination methods.
- Checkpoint_i (void);
- // Constructor.
-
- ~Checkpoint_i (void);
- // Destructor.
-
- virtual void put_event (
- Event * e,
- CORBA::Environment &ACE_TRY_ENV
- )
- ACE_THROW_SPEC ((CORBA::SystemException));
-
- virtual Event_List * get_critical_events (
- CORBA::Environment &ACE_TRY_ENV
- )
- ACE_THROW_SPEC ((CORBA::SystemException));
-
- virtual void shutdown (CORBA::Environment &env)
- ACE_THROW_SPEC ((CORBA::SystemException));
- // Shutdown the server.
-
- void orb (CORBA::ORB_ptr o);
- // Set the ORB pointer.
-
-private:
- CORBA::ORB_var orb_;
- // ORB pointer.
-};
-
-#endif /* ECHO_I_H */
-