mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-03 10:05:05 +01:00
1ee6897ef5
*Fixed several gui_customoptionbrowser issues *Fixed missing background on title browser
36 lines
981 B
C++
36 lines
981 B
C++
/****************************************************************************
|
|
* HomebrewXML Class
|
|
* for USB Loader GX
|
|
***************************************************************************/
|
|
#ifndef ___HOMEBREWXML_H_
|
|
#define ___HOMEBREWXML_H_
|
|
|
|
#include <string>
|
|
|
|
class HomebrewXML
|
|
{
|
|
public:
|
|
HomebrewXML() { };
|
|
HomebrewXML(const char* filename) { LoadHomebrewXMLData(filename); };
|
|
|
|
int LoadHomebrewXMLData(const char* filename);
|
|
|
|
const char * GetName() const;
|
|
void SetName(char * newName);
|
|
const char * GetCoder() const;
|
|
const char * GetVersion() const;
|
|
const char * GetReleasedate() const;
|
|
const char * GetShortDescription() const;
|
|
const char * GetLongDescription() const;
|
|
|
|
protected:
|
|
std::string Name;
|
|
std::string Coder;
|
|
std::string Version;
|
|
std::string Releasedate;
|
|
std::string ShortDescription;
|
|
std::string LongDescription;
|
|
};
|
|
|
|
#endif
|