summaryrefslogtreecommitdiff
path: root/cpp/demo/Ice/nested/NestedI.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/demo/Ice/nested/NestedI.h')
-rw-r--r--cpp/demo/Ice/nested/NestedI.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/cpp/demo/Ice/nested/NestedI.h b/cpp/demo/Ice/nested/NestedI.h
deleted file mode 100644
index ea95a5658df..00000000000
--- a/cpp/demo/Ice/nested/NestedI.h
+++ /dev/null
@@ -1,30 +0,0 @@
-// **********************************************************************
-//
-// Copyright (c) 2003-2015 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 NESTED_I_H
-#define NESTED_I_H
-
-#include <Nested.h>
-
-class NestedI : public Demo::Nested
-{
-public:
-
- NestedI(const Demo::NestedPrx&);
- virtual void nestedCall(Ice::Int, const Demo::NestedPrx&, const Ice::Current&);
-
-private:
-
- // Required to prevent compiler warnings with MSVC++
- NestedI& operator=(const NestedI&);
-
- const Demo::NestedPrx _self;
-};
-
-#endif