// ********************************************************************** // // Copyright (c) 2003-2017 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. // // ********************************************************************** #ifndef WSTRING_I_H #define WSTRING_I_H #include namespace Test1 { class WstringClassI : public virtual WstringClass { public: virtual ::std::wstring opString(ICE_IN(::std::wstring), ::std::wstring&, const Ice::Current&); virtual ::Test1::WstringStruct opStruct(ICE_IN(::Test1::WstringStruct), ::Test1::WstringStruct&, const Ice::Current&); virtual void throwExcept(ICE_IN(::std::wstring), const Ice::Current&); }; } namespace Test2 { class WstringClassI : public virtual WstringClass { public: virtual ::std::wstring opString(ICE_IN(::std::wstring), ::std::wstring&, const Ice::Current&); virtual ::Test2::WstringStruct opStruct(ICE_IN(::Test2::WstringStruct), ::Test2::WstringStruct&, const Ice::Current&); virtual void throwExcept(ICE_IN(::std::wstring), const Ice::Current&); }; } #endif