mirror of
https://github.com/sle118/squeezelite-esp32.git
synced 2025-12-08 12:37:01 +03:00
17 lines
328 B
C++
17 lines
328 B
C++
#ifndef FILEHELPER_H
|
|
#define FILEHELPER_H
|
|
|
|
#include <iostream>
|
|
#include <fstream>
|
|
|
|
class FileHelper
|
|
{
|
|
public:
|
|
FileHelper() {}
|
|
virtual ~FileHelper() {}
|
|
virtual bool readFile(std::string filename, std::string &fileContent) = 0;
|
|
virtual bool writeFile(std::string filename, std::string fileContent) = 0;
|
|
};
|
|
|
|
#endif
|