diff options
author | Mark Spruiell <mes@zeroc.com> | 2004-02-24 01:17:01 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2004-02-24 01:17:01 +0000 |
commit | 77a6cfbb8aad38be3d323f628681b0359f38f38e (patch) | |
tree | d332cb72abaaf71ed5580181494b0dd19ad36e59 /cpp/test/Ice/objects/Client.cpp | |
parent | certs (diff) | |
download | ice-77a6cfbb8aad38be3d323f628681b0359f38f38e.tar.bz2 ice-77a6cfbb8aad38be3d323f628681b0359f38f38e.tar.xz ice-77a6cfbb8aad38be3d323f628681b0359f38f38e.zip |
adding ice_preMarshal/ice_postUnmarshal, and tests in Ice/objects
Diffstat (limited to 'cpp/test/Ice/objects/Client.cpp')
-rw-r--r-- | cpp/test/Ice/objects/Client.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/test/Ice/objects/Client.cpp b/cpp/test/Ice/objects/Client.cpp index 9a6a80c1873..2eea6e63466 100644 --- a/cpp/test/Ice/objects/Client.cpp +++ b/cpp/test/Ice/objects/Client.cpp @@ -14,7 +14,7 @@ #include <Ice/Ice.h> #include <TestCommon.h> -#include <Test.h> +#include <TestI.h> using namespace std; @@ -26,15 +26,15 @@ public: { if(type == "::B") { - return new B; + return new BI; } else if(type == "::C") { - return new C; + return new CI; } else if(type == "::D") { - return new D; + return new DI; } assert(false); // Should never be reached return 0; |