hunting/utils/Log/include/ILogCpp.h
2023-09-08 16:53:44 -07:00

14 lines
343 B
C++

#ifndef ILOGCPP_H
#define ILOGCPP_H
#include "ILog.h"
#include <memory>
class ILogCpp
{
public:
ILogCpp() = default;
virtual ~ILogCpp() = default;
static std::shared_ptr<ILogCpp> &GetInstance(std::shared_ptr<ILogCpp> *impl = nullptr);
virtual void Init(const int &log) {}
virtual void UnInit(void) {}
};
#endif