SimpleGL  1.1.0
A framework for platform independent rendering
logging.hpp
Go to the documentation of this file.
1 
8 #ifndef LOGGING_HPP
9 #define LOGGING_HPP
10 
11 #include "SimpleGL_Export.h"
12 
13 #include <string>
14 
15 namespace sgl {
16 
22  class SIMPLEGL_EXPORT Logger {
23 
24  private:
26  Logger(void);
27 
28  public:
34  static void logInfo(std::string message);
35 
41  static void logError(std::string message);
42  };
43 }
44 
45 #endif /* LOGGING_HPP */
Generic namespace for the SimpleGL framework.
Definition: application.hpp:18
This class is used to log information and errors.
Definition: logging.hpp:22