diff options
author | Marc Laukien <marc@zeroc.com> | 2001-10-08 23:00:04 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2001-10-08 23:00:04 +0000 |
commit | b6d77023ad984fb88e01f2c4a12a30827a28c1c7 (patch) | |
tree | 31cb6ffb9787430b76262e5a73776c2eb52ba03b /cpp/src/slice2cpp/GenUtil.h | |
parent | Ice::Object now inherits virtually from IceUtil::Shared in order to allow (diff) | |
download | ice-b6d77023ad984fb88e01f2c4a12a30827a28c1c7.tar.bz2 ice-b6d77023ad984fb88e01f2c4a12a30827a28c1c7.tar.xz ice-b6d77023ad984fb88e01f2c4a12a30827a28c1c7.zip |
moved generic C++ stuff to Slice library
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 |