Improve game list manager

This commit is contained in:
Loic Guegan 2022-12-25 17:30:22 +01:00
parent cd9f55f5ad
commit f7eab5a593
3 changed files with 37 additions and 15 deletions

View file

@ -22,4 +22,8 @@ public:
GameListManager(wxListCtrl *game_list);
void AddGame(CType White,CType Black,CType Event,CType Round, CType Result, CType Eco);
void Clear();
void MarkItemAsOpen(long item);
void MarkItemAsDeleted(long item);
std::vector<long> GetSelectedItems();
long GetItemGameId(long item);
};