PGE Engine
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Macros Pages
luafuncs_core_logger.h
1 #ifndef LOGGER_H
2 #define LOGGER_H
3 
4 #include <string>
5 
6 #include <luabind/luabind.hpp>
7 #include <lua_inclues/lua.hpp>
8 
10 {
11 public:
12 
13  static void debug(const std::string& msg);
14  static void warning(const std::string& msg);
15  static void critical(const std::string& msg);
16 
17  static luabind::scope bindToLua();
18 
19 };
20 
21 #endif // LOGGER_H
Definition: luafuncs_core_logger.h:9