API Documentation
Logger.h
1 // Logger.h
3 //
5 
6 namespace nkLog
7 {
14  class Logger
15  {
16  public :
17 
21  Logger () noexcept ;
25  virtual ~Logger () ;
26 
27  // Action
36  virtual void log (StringView message, StringView className) = 0 ;
37  } ;
38 }
nkLog::StringView
Allows to exchange strings with external code.
Definition: StringView.h:18
nkLog::Logger::Logger
Logger() noexcept
nkLog
Encompasses all API of component NilkinsLog.
Definition: String.h:7
nkLog::Logger
An interface to make all logging capabilities central.
Definition: Logger.h:15
nkLog::Logger::log
virtual void log(StringView message, StringView className)=0