mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-04 18:45:05 +01:00
30535c6f5d
formatted the code to make it easier to read. no functional changes at all. i didn't put anything from the libwiigui folder or banner folder in the beautifier. my automated .bat seems to have done a good job. the only places i see it fucked up was on (GXColor){blablabla}. it treated the brackets in the color like all the other brackets and put the color on a new line and indented it. i think i fixed most of them. not sure if it messed up anywhere else. also not sure about how it handled different linebreaks. it looks fine on windows. if it looks messed up on linux, it can be reverted. the code still compiles and runs fine.
55 lines
1.3 KiB
C++
55 lines
1.3 KiB
C++
/****************************************************************************
|
|
* HomebrewXML Class
|
|
* for USB Loader GX
|
|
***************************************************************************/
|
|
#ifndef ___HOMEBREWXML_H_
|
|
#define ___HOMEBREWXML_H_
|
|
|
|
class HomebrewXML {
|
|
public:
|
|
//!Constructor
|
|
//!\param path Path for the xml file
|
|
HomebrewXML();
|
|
//!Destructor
|
|
~HomebrewXML();
|
|
//!\param filename Filepath of the XML file
|
|
int LoadHomebrewXMLData(const char* filename);
|
|
//! Get name
|
|
char * GetName() {
|
|
return name;
|
|
}
|
|
//! Get coder
|
|
char * GetCoder() {
|
|
return coder;
|
|
}
|
|
//! Get version
|
|
char * GetVersion() {
|
|
return version;
|
|
}
|
|
//! Get releasedate
|
|
char * GetReleasedate() {
|
|
return releasedate;
|
|
}
|
|
//! Get shortdescription
|
|
char * GetShortDescription() {
|
|
return shortdescription;
|
|
}
|
|
//! Get longdescription
|
|
char * GetLongDescription() {
|
|
return longdescription;
|
|
}
|
|
//! Set Name
|
|
void SetName(char * path) {
|
|
strncpy(name, path, sizeof(name));
|
|
}
|
|
protected:
|
|
char name[50];
|
|
char coder[100];
|
|
char version[30];
|
|
char releasedate[30];
|
|
char shortdescription[150];
|
|
char longdescription[500];
|
|
};
|
|
|
|
#endif
|