23 ifstream stream(fileName);
24 std::stringstream sstr;
25 sstr << stream.rdbuf();
27 return !stream.fail();
Utilities to help scanners.
bool operator==(const match &m1, const match &m2)
Compare two regex match.
bool operator!=(const match &m1, const match &m2)
Compare two regex match.
bool ReadFileToString(const string &fileName, string &out)
Utility: read file to string from scanners.h.
Store the results of a regex match.