Debug includes

This commit is contained in:
Loic Guegan 2022-12-26 17:11:09 +01:00
parent a09db7e745
commit af331272c7
2 changed files with 3 additions and 1 deletions

View file

@ -3,6 +3,7 @@
#include "ochess.hpp"
#include "GameListManager.hpp"
#include "game_tab/Game.hpp"
#include <vector>
class BaseImportTab : public TabBase_TabImport {
TabInfos *main_tab;
@ -22,5 +23,5 @@ public:
void OnImportSelection(wxCommandEvent &event);
void OnImportDatabase(wxCommandEvent &event);
void Reset(std::shared_ptr<GameBase> base);
};

View file

@ -13,6 +13,7 @@
#include <wx/filefn.h> // Check file exists etc
#include <wx/log.h>
#include <wx/busyinfo.h>
#include <vector>
#define MAINWIN ((MainWindow *)wxGetApp().GetTopWindow())