diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-05-31 08:49:48 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-05-31 08:49:48 -0400 |
commit | b22860234ff7991c851211042a9832d88ccbb958 (patch) | |
tree | 255f72ca00a3567c69b7f8f0bc7889aa3b12689d /include/common.hpp | |
parent | 7dd64863c9ca613cf6969442f621849762b20115 (diff) |
entitys can modify xml
Diffstat (limited to 'include/common.hpp')
-rw-r--r-- | include/common.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/common.hpp b/include/common.hpp index 934ede5..4fa74d7 100644 --- a/include/common.hpp +++ b/include/common.hpp @@ -265,6 +265,8 @@ void strVectorSortAlpha(std::vector<std::string> *v); // reads the given file into a buffer and returns a pointer to the buffer const char *readFile(const char *path); +std::string readFile(const std::string& path); +std::vector<std::string> readFileA(const std::string& path); // aborts the program, printing the given error void UserError(std::string reason); |