Update BaseTab implementation

This commit is contained in:
Loic Guegan 2022-02-24 11:50:16 +01:00
parent bdfc577a3b
commit 32a0b3e31f
7 changed files with 56 additions and 12 deletions
src/base_tab/gamebase

View file

@ -0,0 +1,10 @@
#include "GameBase.hpp"
class PGNGameBase : public GameBase {
public:
PGNGameBase(std::string pgn_file);
bool HasNextGame() { return (false); }
Game *GetGame(std::uint32_t id) { return (new Game()); };
Game *GetNextGame() { return (new Game()); };
};