diff options
Diffstat (limited to 'cppe/test/IceE/custom/StringConverterI.h')
-rw-r--r-- | cppe/test/IceE/custom/StringConverterI.h | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/cppe/test/IceE/custom/StringConverterI.h b/cppe/test/IceE/custom/StringConverterI.h deleted file mode 100644 index eacea6bc72b..00000000000 --- a/cppe/test/IceE/custom/StringConverterI.h +++ /dev/null @@ -1,49 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2007 ZeroC, Inc. All rights reserved. -// -// This copy of Ice-E is licensed to you under the terms described in the -// ICEE_LICENSE file included in this distribution. -// -// ********************************************************************** - -#ifndef STRING_CONVERTER_I_H -#define STRING_CONVERTER_I_H - -#include <IceE/Config.h> - -#ifdef ICEE_HAS_WSTRING - -#include <IceE/StringConverter.h> - -// -// Simple contrived string converters which simply reverse the order of the -// characters being sent. -// - -namespace Test -{ - -class StringConverterI : public Ice::StringConverter -{ -public: - - virtual Ice::Byte* toUTF8(const char*, const char*, Ice::UTF8Buffer&) const; - virtual void fromUTF8(const Ice::Byte* sourceStart, const Ice::Byte* sourceEnd, - std::string& target) const; -}; - -class WstringConverterI : public Ice::WstringConverter -{ -public: - - virtual Ice::Byte* toUTF8(const wchar_t*, const wchar_t*, Ice::UTF8Buffer&) const; - virtual void fromUTF8(const Ice::Byte* sourceStart, const Ice::Byte* sourceEnd, - std::wstring& target) const; -}; - -} - -#endif - -#endif |