legacyapplication.h 494 B

123456789101112131415161718192021222324252627
  1. #ifndef LEGACYAPPLICATION_H
  2. #define LEGACYAPPLICATION_H
  3. #include <QApplication>
  4. #include <QThread>
  5. #include "models/lotrodatmanager.h"
  6. #include "models/patchlist.h"
  7. #include "widgets/mainwindow.h"
  8. class LegacyApplication : public QApplication
  9. {
  10. public:
  11. LegacyApplication(int &argc, char** argv);
  12. bool init();
  13. private:
  14. LotroDatManager *lotro_dat_manager;
  15. QThread *lotro_dat_manager_thread;
  16. PatchList *patch_list;
  17. MainWindow *gui;
  18. };
  19. #endif // LEGACYAPPLICATION_H