Files
squeezelite-esp32/components/spotify/cspot/include/FileHelper.h
Philippe G 898998efb0 big merge
2021-12-18 21:04:23 -08:00

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