| 17 | } |
| 18 | |
| 19 | bool isSeparator(const char c) |
| 20 | { |
| 21 | if (c == '=' || c == ',') |
| 22 | { |
| 23 | return true; |
| 24 | } |
| 25 | return false; |
| 26 | } |
| 27 | } |
| 28 | |
| 29 | TFE_Parser::TFE_Parser() : m_buffer(nullptr), m_bufferLen(0u), m_enableBlockComments(false), m_blockComment(false), m_enableColonSeperator(false), m_convertToUppercase(false) {} |