1 2 3 4 5 6 7 8 9 10 11 12 13
#define MS_CLASS "Channel::Notifier" // #define MS_LOG_DEV_LEVEL 3 #include "Channel/ChannelNotifier.hpp" #include "Logger.hpp" namespace Channel { ChannelNotifier::ChannelNotifier(Channel::ChannelSocket* channel) : channel(channel) { MS_TRACE(); } } // namespace Channel