mirror of
https://github.com/sle118/squeezelite-esp32.git
synced 2025-12-10 05:27:01 +03:00
big merge
This commit is contained in:
16
components/spotify/cspot/include/FileHelper.h
Normal file
16
components/spotify/cspot/include/FileHelper.h
Normal file
@@ -0,0 +1,16 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user