diff options
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; |