summaryrefslogtreecommitdiff
path: root/TAO/tests/CallbackTest/Callback.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/CallbackTest/Callback.h')
-rw-r--r--TAO/tests/CallbackTest/Callback.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/TAO/tests/CallbackTest/Callback.h b/TAO/tests/CallbackTest/Callback.h
deleted file mode 100644
index 81f26ac880a..00000000000
--- a/TAO/tests/CallbackTest/Callback.h
+++ /dev/null
@@ -1,34 +0,0 @@
-//
-// $Id$
-//
-
-#ifndef CALLBACK_CALLBACK_H
-#define CALLBACK_CALLBACK_H
-#include /**/ "ace/pre.h"
-
-#include "TestS.h"
-
-/// Implement the Test::Callback interface
-class Callback
- : public virtual POA_Test::Callback
-{
-public:
- /// Constructor
- Callback (CORBA::ORB_ptr orb);
-
- // = The skeleton methods
- virtual CORBA::Boolean are_you_there (CORBA::String_out answer ACE_ENV_ARG_DECL_WITH_DEFAULTS)
- ACE_THROW_SPEC ((CORBA::SystemException));
-
- virtual void test_oneway (ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS)
- ACE_THROW_SPEC ((CORBA::SystemException));
-
- virtual void shutdown (ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS)
- ACE_THROW_SPEC ((CORBA::SystemException));
-private:
- /// Use an ORB reference to shutdown the application.
- CORBA::ORB_var orb_;
-};
-
-#include /**/ "ace/post.h"
-#endif /* CALLBACK_CALLBACK_H */