mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-02 09:02:03 +02:00
33 lines
757 B
C
33 lines
757 B
C
|
/*
|
||
|
* mock_BonusBearer.h, part of VCMI engine
|
||
|
*
|
||
|
* Authors: listed in file AUTHORS in main folder
|
||
|
*
|
||
|
* License: GNU General Public License v2.0 or later
|
||
|
* Full text of license available in license.txt file, in main folder
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include "../../lib/HeroBonus.h"
|
||
|
|
||
|
|
||
|
class BonusBearerMock : public IBonusBearer
|
||
|
{
|
||
|
public:
|
||
|
BonusBearerMock();
|
||
|
virtual ~BonusBearerMock();
|
||
|
|
||
|
void addNewBonus(const std::shared_ptr<Bonus> & b);
|
||
|
|
||
|
const TBonusListPtr getAllBonuses(const CSelector & selector, const CSelector & limit, const CBonusSystemNode * root = nullptr, const std::string & cachingStr = "") const override;
|
||
|
|
||
|
int64_t getTreeVersion() const override;
|
||
|
private:
|
||
|
mutable BonusList bonuses;
|
||
|
|
||
|
mutable int64_t cachedLast;
|
||
|
int32_t treeVersion;
|
||
|
};
|