summaryrefslogtreecommitdiff
path: root/ACE/TAO/tests/MProfile/test_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/tests/MProfile/test_i.h')
-rw-r--r--ACE/TAO/tests/MProfile/test_i.h48
1 files changed, 48 insertions, 0 deletions
diff --git a/ACE/TAO/tests/MProfile/test_i.h b/ACE/TAO/tests/MProfile/test_i.h
new file mode 100644
index 00000000000..07f971408ac
--- /dev/null
+++ b/ACE/TAO/tests/MProfile/test_i.h
@@ -0,0 +1,48 @@
+// $Id$
+
+// ============================================================================
+//
+// = LIBRARY
+// TAO/tests/Mprofile
+//
+// = FILENAME
+// test_i.h
+//
+// = AUTHOR
+// Carlos O'Ryan <coryan@uci.edu>
+//
+// ============================================================================
+
+#ifndef TAO_MPROFILE_TEST_I_H
+#define TAO_MPROFILE_TEST_I_H
+
+#include "testS.h"
+
+class Simple_Server_i : public POA_Simple_Server
+{
+ // = TITLE
+ // Simpler Server implementation
+ //
+ // = DESCRIPTION
+ // Implements the Simple_Server interface in test.idl
+ //
+public:
+ Simple_Server_i (CORBA::ORB_ptr orb);
+ // ctor
+
+ Simple_Server_i (void);
+ // ctor
+
+ // = The Simple_Server methods.
+ CORBA::Long remote_call (void);
+
+ void shutdown (void);
+
+private:
+ CORBA::ORB_var orb_;
+
+ CORBA::Long val_;
+
+};
+
+#endif /* TAO_MPROFILE_TEST_I_H */