Initial commit

This commit is contained in:
user
2026-07-12 14:34:52 +04:00
commit 3abf6bd9c2
557 changed files with 68706 additions and 0 deletions
@@ -0,0 +1,12 @@
#ifndef FILE_READER_INTERFACE_H
#define FILE_READER_INTERFACE_H
#include <string>
class FileReaderInterface {
public:
virtual ~FileReaderInterface() = default;
virtual bool read(const std::string &sqlFilePath, std::string &data) = 0;
};
#endif // !FILE_READER_INTERFACE