diff options
author | Marc Laukien <marc@zeroc.com> | 2001-12-16 02:23:26 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2001-12-16 02:23:26 +0000 |
commit | 02afb44c199f857aa84a6a6acc506837cfca278a (patch) | |
tree | 63d5b0184021fc9f33c02f9ed8a45e6bbd0e8d15 /cpp/src/slice2cpp/Gen.cpp | |
parent | completed first version of Connection (diff) | |
download | ice-02afb44c199f857aa84a6a6acc506837cfca278a.tar.bz2 ice-02afb44c199f857aa84a6a6acc506837cfca278a.tar.xz ice-02afb44c199f857aa84a6a6acc506837cfca278a.zip |
Connection
Diffstat (limited to 'cpp/src/slice2cpp/Gen.cpp')
-rw-r--r-- | cpp/src/slice2cpp/Gen.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/cpp/src/slice2cpp/Gen.cpp b/cpp/src/slice2cpp/Gen.cpp index 167f2c0aed2..c10cee72a98 100644 --- a/cpp/src/slice2cpp/Gen.cpp +++ b/cpp/src/slice2cpp/Gen.cpp @@ -223,7 +223,7 @@ Slice::Gen::TypesVisitor::visitExceptionStart(const ExceptionPtr& p) H << sb; H.dec(); - H << nl << "public: "; + H << nl << "public:"; H.inc(); H << sp; @@ -775,7 +775,7 @@ Slice::Gen::ProxyVisitor::visitClassDefStart(const ClassDefPtr& p) H << sb; H.dec(); - H << nl << "public: "; + H << nl << "public:"; H.inc(); return true; @@ -997,7 +997,7 @@ Slice::Gen::DelegateVisitor::visitClassDefStart(const ClassDefPtr& p) } H << sb; H.dec(); - H << nl << "public: "; + H << nl << "public:"; H.inc(); return true; @@ -1121,7 +1121,7 @@ Slice::Gen::DelegateMVisitor::visitClassDefStart(const ClassDefPtr& p) H.restoreIndent(); H << sb; H.dec(); - H << nl << "public: "; + H << nl << "public:"; H.inc(); return true; @@ -1187,7 +1187,7 @@ Slice::Gen::DelegateMVisitor::visitOperation(const OperationPtr& p) C << nl << "try"; C << sb; C << nl << "static const ::std::string __operation(\"" << name << "\");"; - C << nl << "::IceInternal::Outgoing __out(__emitter, __reference, __sendProxy, __operation, " + C << nl << "::IceInternal::Outgoing __out(__connection, __reference, __sendProxy, __operation, " << (p->nonmutating() ? "true" : "false") << ", __context);"; if (ret || !outParams.empty() || !throws.empty()) { @@ -1332,7 +1332,7 @@ Slice::Gen::DelegateDVisitor::visitClassDefStart(const ClassDefPtr& p) H.restoreIndent(); H << sb; H.dec(); - H << nl << "public: "; + H << nl << "public:"; H.inc(); return true; @@ -1566,7 +1566,7 @@ Slice::Gen::ObjectVisitor::visitClassDefStart(const ClassDefPtr& p) H.restoreIndent(); H << sb; H.dec(); - H << nl << "public: "; + H << nl << "public:"; H.inc(); if (!p->isLocal()) |