summaryrefslogtreecommitdiff
path: root/cpp/src/Slice/CPlusPlusUtil.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/Slice/CPlusPlusUtil.h')
-rw-r--r--cpp/src/Slice/CPlusPlusUtil.h71
1 files changed, 71 insertions, 0 deletions
diff --git a/cpp/src/Slice/CPlusPlusUtil.h b/cpp/src/Slice/CPlusPlusUtil.h
new file mode 100644
index 00000000000..5a3ad0f4b14
--- /dev/null
+++ b/cpp/src/Slice/CPlusPlusUtil.h
@@ -0,0 +1,71 @@
+// **********************************************************************
+//
+// 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 C_PLUS_PLUS_UTIL_H
+#define C_PLUS_PLUS_UTIL_H
+
+#include <Slice/Parser.h>
+#include <IceUtil/OutputUtil.h>
+
+namespace Slice
+{
+
+extern FeatureProfile featureProfile;
+extern std::string paramPrefix;
+
+struct ToIfdef
+{
+ char operator()(char);
+};
+
+void printHeader(::IceUtilInternal::Output&);
+void printVersionCheck(::IceUtilInternal::Output&);
+void printDllExportStuff(::IceUtilInternal::Output&, const std::string&);
+
+const int TypeContextInParam = 1;
+const int TypeContextAMIEnd = 2;
+const int TypeContextAMIPrivateEnd = 4;
+const int TypeContextAMICallPrivateEnd = 8;
+const int TypeContextUseWstring = 16;
+const int TypeContextLocal = 32;
+
+bool isMovable(const TypePtr&);
+
+std::string typeToString(const TypePtr&, const StringList& = StringList(), int = 0, bool = false);
+std::string typeToString(const TypePtr&, bool, const StringList& = StringList(), int = 0, bool = false);
+std::string returnTypeToString(const TypePtr&, bool, const StringList& = StringList(), int = 0, bool = false);
+std::string inputTypeToString(const TypePtr&, bool, const StringList& = StringList(), int = 0, bool = false);
+std::string outputTypeToString(const TypePtr&, bool, const StringList& = StringList(), int = 0, bool = false);
+std::string operationModeToString(Operation::Mode, bool cpp11 = false);
+std::string opFormatTypeToString(const OperationPtr&);
+
+std::string fixKwd(const std::string&);
+
+void writeMarshalUnmarshalCode(::IceUtilInternal::Output&, const TypePtr&, bool, int, const std::string&,
+ bool, const StringList& = StringList(), int = 0, const std::string& = "",
+ bool = true);
+
+void writeMarshalCode(::IceUtilInternal::Output&, const ParamDeclList&, const OperationPtr&, bool, int = 0);
+void writeUnmarshalCode(::IceUtilInternal::Output&, const ParamDeclList&, const OperationPtr&, bool, int = 0);
+void writeAllocateCode(::IceUtilInternal::Output&, const ParamDeclList&, const OperationPtr&, bool, int = 0, bool = false);
+
+std::string getEndArg(const TypePtr&, const StringList&, const std::string&);
+void writeEndCode(::IceUtilInternal::Output&, const ParamDeclList&, const OperationPtr&, bool = false);
+
+bool findMetaData(const std::string&, const ClassDeclPtr&, std::string&);
+bool findMetaData(const std::string&, const StringList&, std::string&);
+std::string findMetaData(const StringList&, int = 0);
+bool inWstringModule(const SequencePtr&);
+
+std::string getDataMemberRef(const DataMemberPtr&);
+
+std::string classDefToDelegateString(const ClassDefPtr&, int = 0, bool = false);
+}
+
+#endif