FGx  1
 All Classes Files Functions Variables Enumerations Enumerator Macros Pages
xopt.h
1 // -=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-=-=-=-
2 // FGx FlightGear Launcher // xopt.h
3 // -=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-=-=-=-
4 // (c) 2010-2012
5 // Yves Sablonier, Pete Morgan
6 // Geoff McLane
7 // GNU GPLv2, see main.cpp and shipped licence.txt for further information
8 
9 #ifndef XOPT_H
10 #define XOPT_H
11 
12 #include <QString>
13 
14 class XOpt
15 {
16 public:
17  explicit XOpt(QString option, bool enabled, QString value, QString default_value);
18  QString option;
19  QString value;
20  bool enabled;
21  QString default_value;
22 
23 };
24 
25 #endif // XOPT_H