SaltAPI  1.1
An API for the HTTPd / Zia by Salty Studio.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros
ILogger.hpp
Go to the documentation of this file.
1 //
2 // Created by wery_a on 07/01/17.
3 //
4 
5 #ifndef API_V2_ILOGGING_HPP
6 #define API_V2_ILOGGING_HPP
7 
8 #include <string>
9 
10 namespace Module {
14  class ILogger {
15  public:
19  enum Type {
28  };
29 
35  virtual void Log(std::string const &msg, Type type = Type::Info) const = 0;
36 
37  };
38 }
39 
40 #endif //API_V2_ILOGGING_HPP
virtual void Log(std::string const &msg, Type type=Type::Info) const =0