summaryrefslogtreecommitdiff
path: root/cpp/src/slice2javae/Gen.h
diff options
context:
space:
mode:
authorBernard Normier <bernard@zeroc.com>2007-12-21 11:12:14 -0500
committerBernard Normier <bernard@zeroc.com>2007-12-21 11:12:14 -0500
commit08ec7524df324e627bbb8d93c509f0d90badbe3b (patch)
treea640ae99a5e35b210352150feef4f71832b265c5 /cpp/src/slice2javae/Gen.h
parentMerge branch 'master' of ssh://cvs.zeroc.com/home/git/ice (diff)
downloadice-08ec7524df324e627bbb8d93c509f0d90badbe3b.tar.bz2
ice-08ec7524df324e627bbb8d93c509f0d90badbe3b.tar.xz
ice-08ec7524df324e627bbb8d93c509f0d90badbe3b.zip
IceUtil cleanup (first commit)
Diffstat (limited to 'cpp/src/slice2javae/Gen.h')
-rw-r--r--cpp/src/slice2javae/Gen.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/cpp/src/slice2javae/Gen.h b/cpp/src/slice2javae/Gen.h
index 011f6071726..ec7c880c39e 100644
--- a/cpp/src/slice2javae/Gen.h
+++ b/cpp/src/slice2javae/Gen.h
@@ -59,12 +59,12 @@ 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&);
//
// Generate dispatch methods for a class or interface.
//
- void writeDispatch(::IceUtil::Output&, const ClassDefPtr&);
+ void writeDispatch(::IceUtilInternal::Output&, const ClassDefPtr&);
};
class Gen : private ::IceUtil::noncopyable
@@ -199,17 +199,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