mirror of
https://gitlab.com/manzerbredes/ochess.git
synced 2025-04-07 02:26:29 +02:00
12 lines
No EOL
372 B
C++
12 lines
No EOL
372 B
C++
#include "gamebase/GameBase.hpp"
|
|
|
|
class AppendGameDialog : public DialogAppendGame {
|
|
std::shared_ptr<GameBase> base; // Should not be destroy
|
|
std::vector<TabInfos *> tinfos;
|
|
|
|
public:
|
|
AppendGameDialog(wxWindow *parent, std::shared_ptr<GameBase> base);
|
|
void OnCancel(wxCommandEvent &event);
|
|
void OnImport(wxCommandEvent &event);
|
|
void OnClose(wxCloseEvent &e);
|
|
}; |