summaryrefslogtreecommitdiff
path: root/cpp/demo/Ice/nested/NestedI.h
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2001-09-28 19:24:59 +0000
committerMarc Laukien <marc@zeroc.com>2001-09-28 19:24:59 +0000
commit814a0caf9df6989962b8e0224022633831af6382 (patch)
tree85e2e915e187a709dd4a30db450d990a63180bd7 /cpp/demo/Ice/nested/NestedI.h
parentwin update (diff)
downloadice-814a0caf9df6989962b8e0224022633831af6382.tar.bz2
ice-814a0caf9df6989962b8e0224022633831af6382.tar.xz
ice-814a0caf9df6989962b8e0224022633831af6382.zip
initial nested demo (does not work yet)
Diffstat (limited to 'cpp/demo/Ice/nested/NestedI.h')
-rw-r--r--cpp/demo/Ice/nested/NestedI.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/cpp/demo/Ice/nested/NestedI.h b/cpp/demo/Ice/nested/NestedI.h
new file mode 100644
index 00000000000..579c52a3596
--- /dev/null
+++ b/cpp/demo/Ice/nested/NestedI.h
@@ -0,0 +1,28 @@
+// **********************************************************************
+//
+// Copyright (c) 2001
+// MutableRealms, Inc.
+// Huntsville, AL, USA
+//
+// All Rights Reserved
+//
+// **********************************************************************
+
+#ifndef NESTED_I_H
+#define NESTED_I_H
+
+#include <Nested.h>
+
+class NestedI : public Nested
+{
+public:
+
+ NestedI(const NestedPrx&);
+ virtual void nested(Ice::Int, const NestedPrx&);
+
+private:
+
+ NestedPrx _self;
+};
+
+#endif