diff options
author | Bernard Normier <bernard@zeroc.com> | 2007-12-21 11:12:14 -0500 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2007-12-21 11:12:14 -0500 |
commit | 08ec7524df324e627bbb8d93c509f0d90badbe3b (patch) | |
tree | a640ae99a5e35b210352150feef4f71832b265c5 /cpp/src/slice2java/Gen.h | |
parent | Merge branch 'master' of ssh://cvs.zeroc.com/home/git/ice (diff) | |
download | ice-08ec7524df324e627bbb8d93c509f0d90badbe3b.tar.bz2 ice-08ec7524df324e627bbb8d93c509f0d90badbe3b.tar.xz ice-08ec7524df324e627bbb8d93c509f0d90badbe3b.zip |
IceUtil cleanup (first commit)
Diffstat (limited to 'cpp/src/slice2java/Gen.h')
-rw-r--r-- | cpp/src/slice2java/Gen.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cpp/src/slice2java/Gen.h b/cpp/src/slice2java/Gen.h index 660f93d703c..38e1816c345 100644 --- a/cpp/src/slice2java/Gen.h +++ b/cpp/src/slice2java/Gen.h @@ -55,13 +55,13 @@ protected: // // Generate code to compute a hash code for a type. // - void writeHashCode(::IceUtil::Output&, const TypePtr&, const std::string&, int&, + void writeHashCode(::IceUtilInternal::Output&, const TypePtr&, const std::string&, int&, const std::list<std::string>& = std::list<std::string>()); // // Generate dispatch and marshalling methods for a class or interface. // - void writeDispatchAndMarshalling(::IceUtil::Output&, const ClassDefPtr&, bool); + void writeDispatchAndMarshalling(::IceUtilInternal::Output&, const ClassDefPtr&, bool); }; class Gen : private ::IceUtil::noncopyable @@ -245,17 +245,17 @@ private: // Generate code to emit a local variable declaration and initialize it // if necessary. // - void writeDecl(::IceUtil::Output&, const std::string&, const std::string&, const TypePtr&, const StringList&); + void writeDecl(::IceUtilInternal::Output&, const std::string&, const std::string&, const TypePtr&, const StringList&); // // Generate code to return a value. // - void writeReturn(::IceUtil::Output&, const TypePtr&); + void writeReturn(::IceUtilInternal::Output&, const TypePtr&); // // Generate an operation. // - void writeOperation(::IceUtil::Output&, const std::string&, const OperationPtr&, bool); + void writeOperation(::IceUtilInternal::Output&, const std::string&, const OperationPtr&, bool); }; class ImplVisitor : public BaseImplVisitor |