usbloadergx/source/homebrewboot/HomebrewXML.h
dimok321 71d537c1a7 *Compile warnings fixed for devkitPPC R22
*Changed usb fat partition mount/unmount a bit
*Added wifi printf for quick debugging purpose only (not used currently).
2010-10-24 19:08:03 +00:00

36 lines
923 B
C++

/****************************************************************************
* HomebrewXML Class
* for USB Loader GX
***************************************************************************/
#ifndef ___HOMEBREWXML_H_
#define ___HOMEBREWXML_H_
#include <string>
class HomebrewXML
{
public:
HomebrewXML();
~HomebrewXML();
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