blob: de57e563712023b0df9dff1c21a6e2b2f39b009e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#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);
void Clear();
};
|