Configmanager now works with list. Use getValues for list. Configmanager is able to save into a file now.
16 lines
516 B
XML
16 lines
516 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!-- INTEGER: int e.g 123 -->
|
|
<!-- DECIMAL: float e.g 123.456 -->
|
|
<!-- STRING: string e.g hello -->
|
|
<!-- COLOR: int int int int - rgba e.g. 125 125 125 255 -->
|
|
|
|
<config>
|
|
<source>
|
|
<SourcePath><!-- STRING: root folder for source code parsing, also used as header search path --></SourcePath>
|
|
<HeaderSearchPaths>
|
|
<HeaderSearchPath><!-- STRING: header search path for each path a HeaderSearchPaht element--></HeaderSearchPath>
|
|
</HeaderSearchPaths>
|
|
</source>
|
|
</config>
|