| 41 | protected: |
| 42 | |
| 43 | struct Element |
| 44 | { |
| 45 | String key; |
| 46 | String value; |
| 47 | Element() { } |
| 48 | Element( const String& _key, const String& _value ) : key(_key), value(_value) { } |
| 49 | }; |
| 50 | |
| 51 | bool mCaseSensitive; |
| 52 | S32 mCurrentIndex; |
no outgoing calls
no test coverage detected