Load cdf files at start up

This commit is contained in:
Sebastian Piwell
2016-05-24 14:42:38 -04:00
parent e3c1093310
commit a4d90fb667
9 changed files with 250 additions and 121 deletions
@@ -39,16 +39,17 @@ struct RadioOption {
class GuiIswaComponent : public GuiPropertyComponent {
public:
GuiIswaComponent();
virtual void render() override;
private:
bool gmdata;
bool gmimage;
bool iondata;
bool kameleon;
std::vector<RadioOption> _cdfOptions;
int _cdfOption;
std::vector<int> _cdfOptions;
std::map<std::string, int> _cdfOptionsMap;
};