Init public repo

This commit is contained in:
2026-08-13 14:35:01 +07:00
commit 83161921a1
14 changed files with 399 additions and 0 deletions
+16
View File
@@ -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();
};