summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/proxy/TestI.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/test/Ice/proxy/TestI.h')
-rw-r--r--cpp/test/Ice/proxy/TestI.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/cpp/test/Ice/proxy/TestI.h b/cpp/test/Ice/proxy/TestI.h
new file mode 100644
index 00000000000..81420fbf40b
--- /dev/null
+++ b/cpp/test/Ice/proxy/TestI.h
@@ -0,0 +1,31 @@
+// **********************************************************************
+//
+// 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 void opSleep(int, 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