mirror of
https://gitlab.com/manzerbredes/ochess.git
synced 2025-04-19 04:09:41 +00:00
20 lines
No EOL
584 B
C++
20 lines
No EOL
584 B
C++
|
|
#include "gamebase/GameBase.hpp"
|
|
#include "ochess.hpp"
|
|
#include "BaseGameTab.hpp"
|
|
#include "BaseImportTab.hpp"
|
|
#include "BaseManageTab.hpp"
|
|
|
|
class BaseTab : public TabBase, public TabInfos {
|
|
std::shared_ptr<GameBase> base;
|
|
BaseGameTab *games_tab;
|
|
BaseImportTab *import_tab;
|
|
BaseManageTab * manage_tab;
|
|
public:
|
|
BaseTab(wxFrame *parent, std::string base_file);
|
|
|
|
void ApplyPreferences();
|
|
void RefreshLabel();
|
|
std::shared_ptr<Game> GetGame() { return (std::shared_ptr<Game>(NULL)); }
|
|
std::shared_ptr<GameBase> GetBase() { return (std::shared_ptr<GameBase>(base)); };
|
|
}; |