diff options
author | Marc Laukien <marc@zeroc.com> | 2001-07-09 19:44:44 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2001-07-09 19:44:44 +0000 |
commit | bd8e6148ed73bc667bd72d50f97a639e2a574b77 (patch) | |
tree | 2338c675420f2ceaccd7211ca98345b135e5318f /cpp/src/slice2cpp/Gen.cpp | |
parent | interfaces (not finished yet) (diff) | |
download | ice-bd8e6148ed73bc667bd72d50f97a639e2a574b77.tar.bz2 ice-bd8e6148ed73bc667bd72d50f97a639e2a574b77.tar.xz ice-bd8e6148ed73bc667bd72d50f97a639e2a574b77.zip |
fixes
Diffstat (limited to 'cpp/src/slice2cpp/Gen.cpp')
-rw-r--r-- | cpp/src/slice2cpp/Gen.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/slice2cpp/Gen.cpp b/cpp/src/slice2cpp/Gen.cpp index b50db295bcb..a32a8172314 100644 --- a/cpp/src/slice2cpp/Gen.cpp +++ b/cpp/src/slice2cpp/Gen.cpp @@ -112,7 +112,7 @@ Slice::Gen::generate(const Unit_ptr& unit) H << "\n#include <Ice/ProxyF.h>"; H << "\n#include <Ice/ObjectF.h>"; - H << "\n#include <Ice/IsLocalObjectF.h>"; + H << "\n#include <Ice/LocalObjectF.h>"; H << "\n#include <Ice/Native.h>"; if(unit -> hasProxies()) { @@ -120,11 +120,11 @@ Slice::Gen::generate(const Unit_ptr& unit) H << "\n#include <Ice/Object.h>"; H << "\n#include <Ice/Outgoing.h>"; H << "\n#include <Ice/Incoming.h>"; - H << "\n#include <Ice/IsLocalException.h>"; + H << "\n#include <Ice/LocalException.h>"; } else { - H << "\n#include <Ice/IsLocalObject.h>"; + H << "\n#include <Ice/LocalObject.h>"; C << "\n#include <Ice/Stream.h>"; } @@ -1042,7 +1042,7 @@ Slice::Gen::ObjectVisitor::visitClassDefStart(const ClassDef_ptr& p) else { if(isLocal) - baseS = "::Ice::IsLocalObject"; + baseS = "::Ice::LocalObject"; else baseS = "::Ice::Object"; } |