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
+12
View File
@@ -0,0 +1,12 @@
#ifndef FILE_READER_H
#define FILE_READER_H
#include "file_reader_interface.h"
#include <string>
class FileReader : virtual public FileReaderInterface {
public:
bool read(const std::string &sqlFilePath, std::string &sql) override;
};
#endif // FILE_READER_H