// ********************************************************************** // // 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 ICE_TRACE_UTIL_H #define ICE_TRACE_UTIL_H #include #include namespace IceInternal { class BasicStream; void traceSend(const BasicStream&, const ::Ice::LoggerPtr&, const TraceLevelsPtr&); void traceRecv(const BasicStream&, const ::Ice::LoggerPtr&, const TraceLevelsPtr&); void trace(const char*, const BasicStream&, const ::Ice::LoggerPtr&, const TraceLevelsPtr&); void traceSlicing(const char*, const ::std::string&, const char *, const ::Ice::LoggerPtr&); } #endif