src/lib/INIReader.cpp
branchv_0
changeset 4 d9b047731e18
parent 3 4313e91da50b
child 6 fb717cfbfea1
equal deleted inserted replaced
3:4313e91da50b 4:d9b047731e18
    87 			// TODO: support also multiline content (\ + \n)
    87 			// TODO: support also multiline content (\ + \n)
    88 			// TODO: support also quoted or multiline keys?
    88 			// TODO: support also quoted or multiline keys?
    89 			// TODO: support also escaped characters
    89 			// TODO: support also escaped characters
    90 			// TODO: support also Java .properties and manifest.mf formats?
    90 			// TODO: support also Java .properties and manifest.mf formats?
    91 			// TODO: support also nested sections – hierarchy
    91 			// TODO: support also nested sections – hierarchy
       
    92 			// TODO: support also nested keys e.g. key.sub.subsub.subsubsub=value – translate them to nested sections
    92 			// TODO: support also option for alternative key-value separator (: instead of =)
    93 			// TODO: support also option for alternative key-value separator (: instead of =)
    93 			// TODO: support also other encodings (currently only UTF-8 is supported)
    94 			// TODO: support also other encodings (currently only UTF-8 is supported)
    94 		}
    95 		}
    95 
    96 
    96 		if (inSection) for (INIContentHandler* handler : handlers) handler->endSection();
    97 		if (inSection) for (INIContentHandler* handler : handlers) handler->endSection();