summaryrefslogtreecommitdiff
path: root/TAO/tests/ORB_portspan/simpleI.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/ORB_portspan/simpleI.h')
-rw-r--r--TAO/tests/ORB_portspan/simpleI.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/TAO/tests/ORB_portspan/simpleI.h b/TAO/tests/ORB_portspan/simpleI.h
new file mode 100644
index 00000000000..8ce06ce9497
--- /dev/null
+++ b/TAO/tests/ORB_portspan/simpleI.h
@@ -0,0 +1,23 @@
+#ifndef SIMPLEI_H_
+#define SIMPLEI_H_
+
+#include "simpleS.h"
+
+#if !defined (ACE_LACKS_PRAGMA_ONCE)
+#pragma once
+#endif /* ACE_LACKS_PRAGMA_ONCE */
+
+//Class simple_i
+class simple_i : public virtual POA_simple
+{
+public:
+ //Constructor
+ simple_i ();
+
+ //Destructor
+ ~simple_i () override = default;
+
+ void test () override;
+};
+
+#endif /* SIMPLEI_H_ */