Improve database game import

This commit is contained in:
Loic Guegan 2022-02-26 12:30:07 +01:00
parent 3b6e7d39cf
commit e0a1894928
15 changed files with 547 additions and 155 deletions

View file

@ -14,5 +14,10 @@ public:
virtual bool NextGame() = 0;
virtual std::string GetTag(std::string tag) = 0;
virtual void Reset() = 0;
virtual void Save(GameBase *base) = 0;
/**
* @brief Save the given base into current base format (export)
*
* @param base
*/
virtual void Export(GameBase *base) = 0;
};