13 lines
277 B
C++
13 lines
277 B
C++
|
|
#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
|