14 lines
343 B
C++
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 |