aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLoic Guegan <manzerbredes@mailbox.org>2022-12-26 17:11:09 +0100
committerLoic Guegan <manzerbredes@mailbox.org>2022-12-26 17:11:09 +0100
commitaf331272c7a5a5c27b55ee17b54a0e710c8f5a93 (patch)
tree4473db3d4310c8480fca53de5c285f14713fe43e
parenta09db7e7452375eb1bcae41242bfc11fd006fc10 (diff)
Debug includes
-rw-r--r--src/base_tab/BaseImportTab.hpp3
-rw-r--r--src/ochess.hpp1
2 files changed, 3 insertions, 1 deletions
diff --git a/src/base_tab/BaseImportTab.hpp b/src/base_tab/BaseImportTab.hpp
index 320fdc8..6d9d234 100644
--- a/src/base_tab/BaseImportTab.hpp
+++ b/src/base_tab/BaseImportTab.hpp
@@ -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);
-
+
}; \ No newline at end of file
diff --git a/src/ochess.hpp b/src/ochess.hpp
index 22be496..d920fa4 100644
--- a/src/ochess.hpp
+++ b/src/ochess.hpp
@@ -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())