ochess/src/base_tab/BaseImportTab.hpp

12 lines
287 B
C++
Raw Normal View History

2022-12-23 16:49:33 +01:00
#include "ochess.hpp"
2022-12-25 19:43:05 +01:00
#include "GameListManager.hpp"
2022-12-23 16:49:33 +01:00
class BaseImportTab : public TabBase_TabImport {
2022-12-25 14:32:06 +01:00
TabInfos *main_tab;
2022-12-25 19:43:05 +01:00
GameListManager *glm;
2022-12-23 16:49:33 +01:00
public:
2022-12-25 14:32:06 +01:00
BaseImportTab(wxFrame *parent, TabInfos *main_tab);
void RefreshImportLists();
2022-12-25 19:43:05 +01:00
void OnLoad(wxCommandEvent &event);
2022-12-23 16:49:33 +01:00
};