Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

44 строки
999 B

  1. //
  2. // Lol Engine
  3. //
  4. // Copyright: (c) 2010-2011 Sam Hocevar <sam@hocevar.net>
  5. // This program is free software; you can redistribute it and/or
  6. // modify it under the terms of the Do What The Fuck You Want To
  7. // Public License, Version 2, as published by Sam Hocevar. See
  8. // http://sam.zoy.org/projects/COPYING.WTFPL for more details.
  9. //
  10. //
  11. // The Log interface
  12. // -----------------
  13. // The central logging system.
  14. //
  15. #if !defined __LOL_LOG_H__
  16. #define __LOL_LOG_H__
  17. #include <stdint.h>
  18. namespace lol
  19. {
  20. class Log
  21. {
  22. public:
  23. #ifdef __GNUC__
  24. # define LOL_FMT_ATTR(n, p) __attribute__((format(printf, n, p)))
  25. #else
  26. # define LOL_FMT_ATTR(n, p)
  27. #endif
  28. static void Debug(char const *format, ...) LOL_FMT_ATTR(1, 2);
  29. static void Info(char const *format, ...) LOL_FMT_ATTR(1, 2);
  30. static void Warn(char const *format, ...) LOL_FMT_ATTR(1, 2);
  31. static void Error(char const *format, ...) LOL_FMT_ATTR(1, 2);
  32. #undef LOL_FMT_ATTR
  33. };
  34. } /* namespace lol */
  35. #endif // __LOL_LOG_H__