summaryrefslogtreecommitdiff
path: root/cpp/include/Slice/DotNetNames.h
diff options
context:
space:
mode:
authorMichi Henning <michi@zeroc.com>2004-10-06 01:35:43 +0000
committerMichi Henning <michi@zeroc.com>2004-10-06 01:35:43 +0000
commit48522e29f4932093fc4fdc9c0d8c407b8bb48d55 (patch)
tree9bf8fb31d4e7a99ef4f5e5d581f7f63887118889 /cpp/include/Slice/DotNetNames.h
parentWin32 fixes (diff)
downloadice-48522e29f4932093fc4fdc9c0d8c407b8bb48d55.tar.bz2
ice-48522e29f4932093fc4fdc9c0d8c407b8bb48d55.tar.xz
ice-48522e29f4932093fc4fdc9c0d8c407b8bb48d55.zip
Fixed problems around escaping of inherited method names.
Diffstat (limited to 'cpp/include/Slice/DotNetNames.h')
-rwxr-xr-xcpp/include/Slice/DotNetNames.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/cpp/include/Slice/DotNetNames.h b/cpp/include/Slice/DotNetNames.h
new file mode 100755
index 00000000000..f8a089ecec6
--- /dev/null
+++ b/cpp/include/Slice/DotNetNames.h
@@ -0,0 +1,34 @@
+// **********************************************************************
+//
+// Copyright (c) 2003-2004 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, ApplicationException=8, END=16
+};
+
+extern const char * manglePrefix;
+
+std::string mangleName(const std::string&, int baseTypes = 0);
+
+}
+
+}
+
+#endif