75 static bool readLine(std::istream&
is, std::string&
line);
90 static int findNextWhitespace(
const std::string&
str,
int offset);
93 static int findNextNonWhitespace(
const std::string&
str,
int offset);
96 static std::string varSubstitute(
const std::string&
rawLine,
101 static std::string varTableSubstitute(
const std::string&
rawLine,
107 static std::string before(
const std::string&
str,
const std::string&
sub);
111 static std::string before(
const std::string&
str,
char sub);
115 static std::string after(
const std::string&
str,
const std::string&
sub);
119 static int find(
const std::string&
str,
const std::string&
sub);
122 static bool isWhite(
const std::string&
str);
125 static std::string fixUnprintableCharacters(
const std::string&
str);
135 static std::string between(
const std::string&
str,
const std::string& begin,
136 const std::string& end, std::string& front, std::string& back);
141 static std::string subString(
const std::string&
str,
int begin,
int end);
143 static std::string readFromStream(std::istream&
is);
146 static std::string allCaps(
const std::string&
str);
149 static double atof(
const std::string&
str);
152 static int atoi(
const std::string&
str);
155 static std::ostream& printLines(
158 ,
const std::string &
lines
162 static std::string removeAllSpaces(std::string
stringToClean);