mirror of
https://gitlab.com/manzerbredes/ochess.git
synced 2025-05-06 03:33:56 +00:00
Migrate to std::shared_ptr<GameBase>
This commit is contained in:
parent
44ea0a50a3
commit
bd71371bed
10 changed files with 22 additions and 26 deletions
src/engine_tab
|
@ -19,7 +19,7 @@ public:
|
|||
~EngineTab();
|
||||
void ApplyPreferences() {}
|
||||
std::shared_ptr<Game> GetGame() { return (std::shared_ptr<Game>(NULL)); }
|
||||
void *GetBase() { return (NULL); }
|
||||
std::shared_ptr<GameBase> GetBase() { return (std::shared_ptr<GameBase>(NULL)); }
|
||||
void OnSave(wxCommandEvent &event);
|
||||
void OnDelete(wxCommandEvent &event);
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue