Advertisement
Guest User

Untitled

a guest
Feb 18th, 2020
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. #ifndef _Log_h_
  2. #define _Log_h_
  3. #include "LogDevice.h"
  4.  
  5. class Log
  6. {
  7. public:
  8. static LogDevice* logDevice;
  9.  
  10. static void out(UString t);
  11.  
  12. };
  13.  
  14. #endif
  15. -----------------------------
  16. #include "Log.h"
  17. LogDevice* Log::logDevice;
  18.  
  19. void Log::out(UString t)
  20. {
  21. logDevice->out(t);
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement