can render 2 cv::mats
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
#pragma once
|
||||
#include "ILog.hpp"
|
||||
namespace pixelarium::utils::log
|
||||
{
|
||||
class SpdLogger : public ILog
|
||||
{
|
||||
public:
|
||||
SpdLogger(const std::string& file_sink);
|
||||
|
||||
void Info(const std::string& msg,
|
||||
const std::string& source = "") override;
|
||||
void Debug(const std::string& msg,
|
||||
const std::string& source = "") override;
|
||||
void Warn(const std::string& msg,
|
||||
const std::string& source = "") override;
|
||||
void Error(const std::string& msg,
|
||||
const std::string& source = "") override;
|
||||
};
|
||||
} // namespace pixelarium::utils::log
|
||||
Reference in New Issue
Block a user