1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-24 05:18:36 +00:00

Restores Macintosh 'runtime' options.

Also cleans up some leftover parts elsewhere.
This commit is contained in:
Thomas Harte
2020-03-18 21:50:02 -04:00
parent b2a381d401
commit 311458f41f
8 changed files with 44 additions and 68 deletions
+11
View File
@@ -49,6 +49,17 @@ template <typename Owner> class QuickloadOption {
}
};
template <typename Owner> class QuickbootOption {
public:
bool quickboot;
QuickbootOption(bool quickboot) : quickboot(quickboot) {}
protected:
void declare_quickboot_option() {
static_cast<Owner *>(this)->declare(&quickboot, "quickboot");
}
};
}
#endif /* StandardOptions_hpp */