summaryrefslogtreecommitdiff
path: root/cpp/src/slice2java/Gen.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/slice2java/Gen.h')
-rw-r--r--cpp/src/slice2java/Gen.h10
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