summaryrefslogtreecommitdiff
path: root/TAO/tests/Object_Loader/Test_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Object_Loader/Test_i.h')
-rw-r--r--TAO/tests/Object_Loader/Test_i.h46
1 files changed, 46 insertions, 0 deletions
diff --git a/TAO/tests/Object_Loader/Test_i.h b/TAO/tests/Object_Loader/Test_i.h
new file mode 100644
index 00000000000..e9a7edf00bb
--- /dev/null
+++ b/TAO/tests/Object_Loader/Test_i.h
@@ -0,0 +1,46 @@
+// $Id$
+
+// ============================================================================
+//
+// = LIBRARY
+// TAO/tests/Object_Loader
+//
+// = FILENAME
+// Test_i.h
+//
+// = AUTHOR
+// Carlos O'Ryan
+//
+// ============================================================================
+
+#ifndef TAO_OBJECT_LOADER_TEST_I_H
+#define TAO_OBJECT_LOADER_TEST_I_H
+
+#include "TestS.h"
+#include "OLT_Export.h"
+
+class OLT_Export Test_i : public POA_Test
+{
+ // = TITLE
+ // Implement the Test interface
+ //
+ // = DESCRIPTION
+ //
+public:
+ Test_i (PortableServer::POA_ptr poa);
+ // ctor
+
+ CORBA::Long instance_count (void);
+
+ void destroy (void);
+
+ PortableServer::POA_ptr _default_POA (void);
+
+private:
+ PortableServer::POA_var poa_;
+ // The default POA used for this object
+
+ static CORBA::Long instance_count_;
+};
+
+#endif /* TAO_OBJECT_LOADER_TEST_I_H */