aboutsummaryrefslogtreecommitdiff
path: root/src/base_tab/AppendGameDialog.hpp
blob: 648c798d8edf818f5cd61ad7d4e2a2b1b3b0cc4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "gamebase/GameBase.hpp"

class AppendGameDialog : public DialogAppendGame {
  GameBase *base; // Should not be destroy
  std::vector<TabInfos *> tinfos;

public:
  AppendGameDialog(wxWindow *parent, GameBase *base);
  void OnCancel(wxCommandEvent &event);
  void OnImport(wxCommandEvent &event);
  void OnClose(wxCloseEvent &e);
};