mirror of
https://gitlab.com/manzerbredes/ochess.git
synced 2025-05-07 04:03:56 +00:00
12 lines
316 B
C++
12 lines
316 B
C++
![]() |
#include "AppendGameDialogBF.h"
|
||
|
#include "gamebase/GameBase.hpp"
|
||
|
|
||
|
class AppendGameDialog : public AppendGameDialogBF {
|
||
|
GameBase *base;
|
||
|
std::vector<TabInfos *> tinfos;
|
||
|
|
||
|
public:
|
||
|
AppendGameDialog(wxWindow *parent, GameBase *base);
|
||
|
void OnCancel(wxCommandEvent &event);
|
||
|
void OnImport(wxCommandEvent &event);
|
||
|
};
|