ochess/src/base_tab/GameListManager.hpp

11 lines
256 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);
};