FGx  1
helpers.h
1 // -=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-=-=-=-
2 // FGx FlightGear Launcher // helpers.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 HELPERS_H
10 #define HELPERS_H
11 
12 #include <QButtonGroup>
13 #include <QString>
14 #include <QComboBox>
15 
16 class Helpers
17 {
18 public:
19  Helpers();
20 
21  static void select_radio(QButtonGroup *button_group, QString value);
22 
23  static void select_combo(QComboBox *combo, QString value);
24 
25  static QString hmm_to_decimal(QString hms);
26 };
27 
28 #endif // HELPERS_H
Definition: helpers.h:16