summaryrefslogtreecommitdiff
path: root/TAO/tests/MProfile/test_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/MProfile/test_i.h')
-rw-r--r--TAO/tests/MProfile/test_i.h50
1 files changed, 0 insertions, 50 deletions
diff --git a/TAO/tests/MProfile/test_i.h b/TAO/tests/MProfile/test_i.h
deleted file mode 100644
index f6d4df6ebee..00000000000
--- a/TAO/tests/MProfile/test_i.h
+++ /dev/null
@@ -1,50 +0,0 @@
-// $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 (ACE_ENV_SINGLE_ARG_DECL_NOT_USED)
- ACE_THROW_SPEC ((CORBA::SystemException));
-
- void shutdown (ACE_ENV_SINGLE_ARG_DECL_NOT_USED)
- ACE_THROW_SPEC ((CORBA::SystemException));
-
-private:
- CORBA::ORB_var orb_;
-
- CORBA::Long val_;
-
-};
-
-#endif /* TAO_MPROFILE_TEST_I_H */