Initial commit
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user