summaryrefslogtreecommitdiff
path: root/TAO/tests/Abstract_Interface/test_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Abstract_Interface/test_i.h')
-rw-r--r--TAO/tests/Abstract_Interface/test_i.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/TAO/tests/Abstract_Interface/test_i.h b/TAO/tests/Abstract_Interface/test_i.h
new file mode 100644
index 00000000000..28fcc41464c
--- /dev/null
+++ b/TAO/tests/Abstract_Interface/test_i.h
@@ -0,0 +1,28 @@
+// $Id$
+
+#ifndef TAO_TEST_I_H
+#define TAO_TEST_I_H
+
+#include "testS.h"
+
+class foo_i : public virtual POA_foo
+{
+ virtual char * foo_op (const char * inarg);
+
+ virtual char * base_op (const char * inarg);
+};
+
+class passer_i : public virtual POA_passer
+{
+public:
+ passer_i (PortableServer::POA_ptr poa);
+
+ virtual void pass_ops (base_out outarg);
+
+ virtual void pass_state (base_out outarg);
+
+private:
+ PortableServer::POA_var poa_;
+};
+
+#endif /* TAO_TEST_I_H */