ochess/src/base_tab/AppendGameDialog.hpp

12 lines
340 B
C++
Raw Normal View History

2022-02-26 12:30:07 +01:00
#include "gamebase/GameBase.hpp"
2022-02-28 13:02:27 +01:00
class AppendGameDialog : public DialogAppendGame {
GameBase *base; // Should not be destroy
2022-02-26 12:30:07 +01:00
std::vector<TabInfos *> tinfos;
public:
AppendGameDialog(wxWindow *parent, GameBase *base);
void OnCancel(wxCommandEvent &event);
void OnImport(wxCommandEvent &event);
void OnClose(wxCloseEvent &e);
2022-02-26 12:30:07 +01:00
};