tgbot-cpp
FileTools.h
Go to the documentation of this file.
1 //
2 // Created by Oleg Morozenkov on 25.01.17.
3 //
4 
5 #ifndef TGBOT_FILETOOLS_H
6 #define TGBOT_FILETOOLS_H
7 
8 #include <string>
9 
13 namespace FileTools {
14 
20 std::string read(const std::string& filePath);
21 
27 bool write(const std::string& content, const std::string& filePath);
28 
29 };
30 
31 
32 #endif //TGBOT_FILETOOLS_H
bool write(const std::string &content, const std::string &filePath)
std::string read(const std::string &filePath)