summaryrefslogtreecommitdiff
path: root/cppe/test/IceE/proxy/TestI.h
diff options
context:
space:
mode:
Diffstat (limited to 'cppe/test/IceE/proxy/TestI.h')
-rw-r--r--cppe/test/IceE/proxy/TestI.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/cppe/test/IceE/proxy/TestI.h b/cppe/test/IceE/proxy/TestI.h
new file mode 100644
index 00000000000..a558e5b6823
--- /dev/null
+++ b/cppe/test/IceE/proxy/TestI.h
@@ -0,0 +1,30 @@
+// **********************************************************************
+//
+// Copyright (c) 2003-2007 ZeroC, Inc. All rights reserved.
+//
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
+//
+// **********************************************************************
+
+#ifndef TEST_I_H
+#define TEST_I_H
+
+#include <Test.h>
+
+class MyDerivedClassI : public Test::MyDerivedClass
+{
+public:
+
+ MyDerivedClassI();
+
+ virtual void shutdown(const Ice::Current&);
+ virtual Ice::Context getContext(const Ice::Current&);
+ virtual bool ice_isA(const std::string&, const Ice::Current&) const;
+
+private:
+
+ mutable Ice::Context _ctx;
+};
+
+#endif