aboutsummaryrefslogtreecommitdiff
path: root/src/base_tab/GameListManager.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/base_tab/GameListManager.hpp')
-rw-r--r--src/base_tab/GameListManager.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/base_tab/GameListManager.hpp b/src/base_tab/GameListManager.hpp
index c1452cb..2e22dc4 100644
--- a/src/base_tab/GameListManager.hpp
+++ b/src/base_tab/GameListManager.hpp
@@ -1,6 +1,8 @@
#pragma once
#include "ochess.hpp"
+#include <algorithm>
+#include <vector>
#define TERMS_IN(COL) (row.COL.find(terms) != std::string::npos)
@@ -19,6 +21,7 @@ class GameListManager {
wxListCtrl *game_list;
long game_counter;
std::vector<RType> rows;
+ std::vector<long> deleted_items, opened_items;
void DisplayRow(long id);
void ClearDisplayedRow();