summaryrefslogtreecommitdiff
path: root/cppe/demo/IceE/nested/NestedI.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cppe/demo/IceE/nested/NestedI.cpp')
-rw-r--r--cppe/demo/IceE/nested/NestedI.cpp30
1 files changed, 0 insertions, 30 deletions
diff --git a/cppe/demo/IceE/nested/NestedI.cpp b/cppe/demo/IceE/nested/NestedI.cpp
deleted file mode 100644
index 23633109353..00000000000
--- a/cppe/demo/IceE/nested/NestedI.cpp
+++ /dev/null
@@ -1,30 +0,0 @@
-// **********************************************************************
-//
-// Copyright (c) 2003-2005 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.
-//
-// **********************************************************************
-
-#include <IceE/IceE.h>
-#include <NestedI.h>
-
-using namespace std;
-using namespace Ice;
-using namespace Demo;
-
-NestedI::NestedI(const NestedPrx& self) :
- _self(self)
-{
-}
-
-void
-NestedI::nestedCall(Int level, const NestedPrx& proxy, const Ice::Current& current)
-{
- printf("%d\n", level);
- if(--level > 0)
- {
- proxy->nestedCall(level, _self, current.ctx);
- }
-}