summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_2595_Regression/Hello.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Bug_2595_Regression/Hello.h')
-rw-r--r--TAO/tests/Bug_2595_Regression/Hello.h38
1 files changed, 0 insertions, 38 deletions
diff --git a/TAO/tests/Bug_2595_Regression/Hello.h b/TAO/tests/Bug_2595_Regression/Hello.h
deleted file mode 100644
index 211615c355b..00000000000
--- a/TAO/tests/Bug_2595_Regression/Hello.h
+++ /dev/null
@@ -1,38 +0,0 @@
-//
-// $Id$
-//
-
-#ifndef HELLO_H
-#define HELLO_H
-#include /**/ "ace/pre.h"
-
-#include "TestS.h"
-
-/// Implement the Test::Hello interface
-class Hello
- : public virtual POA_Test::Hello
-{
-public:
- /// Constructor
- Hello (CORBA::ORB_ptr orb);
-
- virtual void op (
- ::Test::Fls_out fstruct,
- ::Test::Vls_out vstruct
- ACE_ENV_ARG_DECL_WITH_DEFAULTS
- )
- ACE_THROW_SPEC ((
- ::CORBA::SystemException
- ));
-
- virtual void shutdown (ACE_ENV_SINGLE_ARG_DECL)
- ACE_THROW_SPEC ((CORBA::SystemException));
-
-private:
- /// Use an ORB reference to convert strings to objects and shutdown
- /// the application.
- CORBA::ORB_var orb_;
-};
-
-#include /**/ "ace/post.h"
-#endif /* HELLO_H */