diff options
| author | Thomas Tanner <trtanner@btinternet.com> | 2016-06-27 21:21:54 +0100 |
|---|---|---|
| committer | Thomas Tanner <trtanner@btinternet.com> | 2016-06-27 21:21:54 +0100 |
| commit | 42407866e9f04cac3c1bad0e1002e23c6f0d5064 (patch) | |
| tree | 8636fd48efe160d7325906cfb88b90374e0522a0 /src/settings.h | |
| parent | c3a8a0b9eb89b1464a0d19d728471e0077cbd8dd (diff) | |
Some include-what-you-use suggested changes
Diffstat (limited to 'src/settings.h')
| -rw-r--r-- | src/settings.h | 24 |
1 files changed, 19 insertions, 5 deletions
diff --git a/src/settings.h b/src/settings.h index 1ee16e76..9f6adaa7 100644 --- a/src/settings.h +++ b/src/settings.h @@ -21,20 +21,34 @@ along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>. #define WORKAROUNDS_H #include "loadmechanism.h" -#include "serverinfo.h" -#include <iplugin.h> +#include <QList> +#include <QMap> +#include <QObject> +#include <QSet> #include <QSettings> -#include <QListWidget> -#include <QComboBox> +#include <QString> +#include <QVariant> +#include <QtGlobal> //for uint + +#include <map> +#include <vector> + +class QCheckBox; +class QComboBox; +class QLineEdit; +class QListWidget; +class QWidget; + +struct ServerInfo; namespace MOBase { + class IPlugin; class IPluginGame; } class SettingsDialog; -class QCheckBox; /** * manages the settings for Mod Organizer. The settings are not cached |
