summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/udp/TestI.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/test/Ice/udp/TestI.h')
-rw-r--r--cpp/test/Ice/udp/TestI.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/cpp/test/Ice/udp/TestI.h b/cpp/test/Ice/udp/TestI.h
new file mode 100644
index 00000000000..ce404a0f264
--- /dev/null
+++ b/cpp/test/Ice/udp/TestI.h
@@ -0,0 +1,24 @@
+// **********************************************************************
+//
+// Copyright (c) 2003-2009 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 TestIntfI : public Test::TestIntf
+{
+public:
+
+ virtual void ping(const Test::PingReplyPrx&, const Ice::Current&);
+ virtual void sendByteSeq(const Test::ByteSeq&, const Test::PingReplyPrx&, const Ice::Current&);
+ virtual void shutdown(const Ice::Current&);
+};
+
+#endif