ochess/src/base_tab/GameListManager.hpp

12 lines
274 B
C++
Raw Normal View History

2022-12-25 15:26:16 +01:00
#include "ochess.hpp"
typedef std::string CType;
class GameListManager {
wxListCtrl *game_list;
long game_counter;
public:
GameListManager(wxListCtrl *game_list);
void AddGame(CType W,CType B,CType Evt,CType Rnd, CType Res, CType Eco);
2022-12-25 15:51:00 +01:00
void Clear();
2022-12-25 15:26:16 +01:00
};