How to sort an xml file or a text file using gtkmm?
This is the sample of the file that I want to sort.
<LIST>
<name>
Example
</name>
<country>
<name>
Country
</name>
<pop>
<desc>
Japan
</desc>
<uri>
100
</uri>
</pop>
<pop>
<desc>
China
</desc>
<uri>
108
</uri>
</pop>
<pop>
<desc>
Italy
</desc>
<uri>
101
</uri>
</pop>
<pop>
<desc>
Russia
</desc>
<uri>
744
</uri>
</pop>
</country>
</LIST>