// // Copyright (c) ZeroC, Inc. All rights reserved. // #ifndef ICE_RESPONSE_HANDLER_H #define ICE_RESPONSE_HANDLER_H #include #include #include #include #include #include namespace Ice { class OutputStream; } namespace IceInternal { class ResponseHandler : #ifdef ICE_CPP11_MAPPING public EnableSharedFromThis #else public virtual IceUtil::Shared #endif { public: virtual void sendResponse(Ice::Int, Ice::OutputStream*, Ice::Byte, bool) = 0; virtual void sendNoResponse() = 0; virtual bool systemException(Ice::Int, const Ice::SystemException&, bool) = 0; virtual void invokeException(Ice::Int, const Ice::LocalException&, int, bool) = 0; }; } #endif