|
STK++ 1.0
|
Functions | |
| bool | checkStringToBoolean (String const &str) |
| check if a string represent a boolean. | |
| bool | StringToBoolean (String const &str) |
| convert a string to a boolean. | |
| void | removeCharBeforeAndAfter (String &str, Char c) |
remove all occurrences of the char c at the beginning and the end of the string str. | |
| String | getField (istream &is, Char delimiter) |
| Get the current field from the input stream. | |
| template<class TYPE > | |
| void | readList (String const &strBuffer, std::list< TYPE > &lst, Char sep=CHAR_SEP) |
Read a list of value of type TYPE stored in a line. | |
| template<class TYPE > | |
| void | writeList (ostream &os, std::list< TYPE > const &lst, Char sep=CHAR_SEP) |
Write a list of value of type TYPE stored in a line. | |