LogFacade.h 242 B

123456789101112131415
  1. #pragma once
  2. class SimpleLog;
  3. namespace DIOS::Dev::Detail::MachineryECOM
  4. {
  5. class LogFacade
  6. {
  7. public:
  8. static SimpleLog *CreateLogger(const std::string &workPath,const std::string &name);
  9. static void Release(SimpleLog*logger);
  10. };
  11. }