summaryrefslogtreecommitdiff
path: root/TAO/examples/Event_Comm/Notifier_Handler.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/Event_Comm/Notifier_Handler.h')
-rw-r--r--TAO/examples/Event_Comm/Notifier_Handler.h62
1 files changed, 0 insertions, 62 deletions
diff --git a/TAO/examples/Event_Comm/Notifier_Handler.h b/TAO/examples/Event_Comm/Notifier_Handler.h
deleted file mode 100644
index 7e2c7ad7952..00000000000
--- a/TAO/examples/Event_Comm/Notifier_Handler.h
+++ /dev/null
@@ -1,62 +0,0 @@
-/* -*- C++ -*- */
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// EventComm
-//
-// = FILENAME
-// Notifier_Handler.h
-//
-// = AUTHOR
-// Douglas C. Schmidt (schmidt@cs.wustl.edu)
-//
-// ============================================================================
-
-#if !defined (_NOTIFIER_HANDLER_H)
-#define _NOTIFIER_HANDLER_H
-
-#include "ace/CORBA_Handler.h"
-#include "Event_Comm_i.h"
-#include "orbsvcs/Naming/Naming_Utils.h"
-#include "orbsvcs/CosNamingC.h"
-
-class Notifier_Handler
-{
- // = TITLE
- // Holds the <Event_Comm::Notifier> object which is obtained from the naming service.
-public:
- // = Initialization and termination methods.
- Notifier_Handler (void);
- // This constructor gets the notifier object from the Naming
- // Service.
-
- ~Notifier_Handler (void);
- // Destructor.
-
- int init (int argc, char *argv[]);
- // Initialize the client communication endpoint with server.
-
- // = Accessors.
- Event_Comm::Notifier *notifier (void);
- void notifier (Event_Comm::Notifier *);
-
- virtual int handle_close (void);
- // Close down the handler.
-
-private:
- Event_Comm::Notifier *notifier_;
- // Pointer to an <Event_Comm::Notifier> object.
-
- TAO_Naming_Client naming_client_;
- // An instance of the name client used for resolving the factory
- // objects.
-
- CORBA::ORB_var orb_;
- // Remember our orb.
-};
-
-#define NOTIFIER_BIND_NAME "Notifier"
-
-#endif /* _NOTIFIER_HANDLER_H */