Init public repo
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
#pragma once
|
||||
|
||||
#include "../Saver/ISaver.h"
|
||||
|
||||
class SaverLib
|
||||
{
|
||||
void* handle;
|
||||
ISaver* saver;
|
||||
public:
|
||||
SaverLib(const std::string& log_file, ISaver::ImportanceMessage importance);
|
||||
inline ISaver* operator->()
|
||||
{
|
||||
return saver;
|
||||
}
|
||||
~SaverLib();
|
||||
};
|
||||
Reference in New Issue
Block a user