summaryrefslogtreecommitdiff
path: root/cpp/include/Slice/DotNetNames.h
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2016-05-11 16:53:58 -0700
committerMark Spruiell <mes@zeroc.com>2016-05-11 16:53:58 -0700
commitff4f6921f63fbf6c194c61eb59879abfd73d9929 (patch)
treec7da9262e4b3a12e720d3aeaa707fa4434185d63 /cpp/include/Slice/DotNetNames.h
parentstream API fixes for scripting languages (diff)
downloadice-ff4f6921f63fbf6c194c61eb59879abfd73d9929.tar.bz2
ice-ff4f6921f63fbf6c194c61eb59879abfd73d9929.tar.xz
ice-ff4f6921f63fbf6c194c61eb59879abfd73d9929.zip
cleaning up stream API in C#
Diffstat (limited to 'cpp/include/Slice/DotNetNames.h')
-rw-r--r--cpp/include/Slice/DotNetNames.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/cpp/include/Slice/DotNetNames.h b/cpp/include/Slice/DotNetNames.h
deleted file mode 100644
index f4ee205e13d..00000000000
--- a/cpp/include/Slice/DotNetNames.h
+++ /dev/null
@@ -1,34 +0,0 @@
-// **********************************************************************
-//
-// Copyright (c) 2003-2016 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 DOTNETNAMES_H
-#define DOTNETNAMES_H
-
-#include <string>
-
-namespace Slice
-{
-
-namespace DotNet
-{
-
-enum BaseType
-{
- Object=1, ICloneable=2, Exception=4, END=8
-};
-
-extern const char * manglePrefix;
-
-std::string mangleName(const std::string&, int baseTypes = 0);
-
-}
-
-}
-
-#endif