// ********************************************************************** // // Copyright (c) 2003-2006 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_SSL_TRACE_LEVELS_H #define ICE_SSL_TRACE_LEVELS_H #include #include #include namespace IceSSL { class TraceLevels : public ::IceUtil::Shared { public: TraceLevels(const IceInternal::ProtocolPluginFacadePtr&); virtual ~TraceLevels(); const int network; const char* networkCat; const int security; const char* securityCat; }; } #endif