Add a string representing a comment, such as ";" "#" "//"
| 49 | |
| 50 | // Add a string representing a comment, such as ";" "#" "//" |
| 51 | void TFE_Parser::addCommentString(const char* comment) |
| 52 | { |
| 53 | m_commentStrings.push_back(comment); |
| 54 | } |
| 55 | |
| 56 | // Convert resulting strings to upper case, defaults to false. |
| 57 | void TFE_Parser::convertToUpperCase(bool enable) |
no test coverage detected