ES-DE/src/XMLReader.h
Bim Overbohm 556b9fa3fe Add functions for writing data to gamelist.xml
Also add a "rating" and "timePlayed" variable to GameData. Some cleanup
in GameData and FolderData. Added sorting functions for rating and
timesPlayed to FolderData. Testing and UI support still tbd.
2013-06-28 14:54:14 +02:00

14 lines
290 B
C++

#ifndef _XMLREADER_H_
#define _XMLREADER_H_
#include <string>
class SystemData;
//Loads gamelist.xml data into a SystemData.
void parseGamelist(SystemData* system);
//Writes changes to SystemData back to a previously loaded gamelist.xml.
void updateGamelist(SystemData* system);
#endif