summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_1535_Regression/Test.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Bug_1535_Regression/Test.h')
-rw-r--r--TAO/tests/Bug_1535_Regression/Test.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/TAO/tests/Bug_1535_Regression/Test.h b/TAO/tests/Bug_1535_Regression/Test.h
new file mode 100644
index 00000000000..df13c104c11
--- /dev/null
+++ b/TAO/tests/Bug_1535_Regression/Test.h
@@ -0,0 +1,28 @@
+//
+// $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
+{
+public:
+ Hello (PortableServer::POA_ptr poa);
+
+ // = The skeleton methods
+ virtual void print_hello_world (void);
+
+ PortableServer::POA_ptr _default_POA (void);
+
+private:
+ PortableServer::POA_var poa_;
+};
+
+#include /**/ "ace/post.h"
+#endif /* HELLO_H */