summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_2084_Regression/EventNode.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Bug_2084_Regression/EventNode.h')
-rw-r--r--TAO/tests/Bug_2084_Regression/EventNode.h38
1 files changed, 0 insertions, 38 deletions
diff --git a/TAO/tests/Bug_2084_Regression/EventNode.h b/TAO/tests/Bug_2084_Regression/EventNode.h
deleted file mode 100644
index e2209a632ac..00000000000
--- a/TAO/tests/Bug_2084_Regression/EventNode.h
+++ /dev/null
@@ -1,38 +0,0 @@
-//
-// $Id$
-//
-
-#ifndef EVENT_NODE_H
-#define EVENT_NODE_H
-#include /**/ "ace/pre.h"
-
-#include "TestS.h"
-
-#include "ace/OS.h"
-
-/// Implement the Test::EventNode interface
-class EventNode
- : public virtual POA_Test::EventNode
-{
-public:
- /// Constructor
- EventNode (CORBA::ORB_ptr orb,
- ACE_thread_t thr_id);
-
- // = The skeleton methods
- virtual void registerHello ( ::Test::Hello_ptr h ACE_ENV_ARG_DECL)
- ACE_THROW_SPEC (( CORBA::SystemException));
-
- virtual void shutdown (ACE_ENV_SINGLE_ARG_DECL)
- ACE_THROW_SPEC ((CORBA::SystemException));
-
-private:
- /// Use an ORB reference to conver strings to objects and shutdown
- /// the application.
- CORBA::ORB_var orb_;
-
- ACE_thread_t thr_id_;
-};
-
-#include /**/ "ace/post.h"
-#endif /* HELLO_H */