// // Copyright (c) ZeroC, Inc. All rights reserved. // #ifndef ICE_STORM_TRACE_LEVELS_H #define ICE_STORM_TRACE_LEVELS_H #include #include namespace IceStorm { class TraceLevels { public: TraceLevels(const ::std::string name, const std::shared_ptr&, std::shared_ptr); const int topicMgr; const char* topicMgrCat; const int topic; const char* topicCat; const int subscriber; const char* subscriberCat; const int election; const char* electionCat; const int replication; const char* replicationCat; const std::shared_ptr logger; }; } // End namespace IceStorm #endif