diff options
Diffstat (limited to 'cpp/src/slice2cpp/GenUtil.h')
-rw-r--r-- | cpp/src/slice2cpp/GenUtil.h | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/cpp/src/slice2cpp/GenUtil.h b/cpp/src/slice2cpp/GenUtil.h deleted file mode 100644 index 0959c4eef80..00000000000 --- a/cpp/src/slice2cpp/GenUtil.h +++ /dev/null @@ -1,33 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2001 -// MutableRealms, Inc. -// Huntsville, AL, USA -// -// All Rights Reserved -// -// ********************************************************************** - -#ifndef GEN_UTIL_H -#define GEN_UTIL_H - -#include <Slice/Parser.h> -#include <Slice/OutputUtil.h> - -namespace Slice -{ - -std::string typeToString(const TypePtr&); -std::string returnTypeToString(const TypePtr&); -std::string inputTypeToString(const TypePtr&); -std::string outputTypeToString(const TypePtr&); -std::string exceptionTypeToString(const TypePtr&); - -void writeMarshalUnmarshalCode(Output&, const TypePtr&, const std::string&, bool); -void writeMarshalCode(Output&, const std::list<std::pair<TypePtr, std::string> >&, const TypePtr&); -void writeUnmarshalCode(Output&, const std::list<std::pair<TypePtr, std::string> >&, const TypePtr&); -void writeAllocateCode(Output&, const std::list<std::pair<TypePtr, std::string> >&, const TypePtr&); - -} - -#endif |