diff options
Diffstat (limited to 'cpp/src/slice2cs/DotNetNames.h')
-rw-r--r-- | cpp/src/slice2cs/DotNetNames.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/cpp/src/slice2cs/DotNetNames.h b/cpp/src/slice2cs/DotNetNames.h new file mode 100644 index 00000000000..9bb2381d21b --- /dev/null +++ b/cpp/src/slice2cs/DotNetNames.h @@ -0,0 +1,34 @@ +// ********************************************************************** +// +// Copyright (c) 2003-2017 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 |