12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- #ifndef BOINC_WSLINFO_H
- #define BOINC_WSLINFO_H
- #include <string>
- #include "miofile.h"
- #include "parse.h"
- struct WSL {
- std::string distro_name;
- std::string name;
- std::string version;
- bool is_default;
- WSL();
- void clear();
- void write_xml(MIOFILE&);
- int parse(XML_PARSER&);
- };
- struct WSLS {
- std::vector<WSL> wsls;
- WSLS();
- void clear();
- void write_xml(MIOFILE&);
- int parse(XML_PARSER&);
- };
- #endif
|