#ifndef INTNODE_H #define INTNODE_H #include "definition_global.h" #include "DefinitionNode.h" namespace paysages { namespace definition { /** * Node with a single integer value, for the definition tree. */ class DEFINITIONSHARED_EXPORT IntNode: public DefinitionNode { public: IntNode(DefinitionNode* parent, const std::string &name, int value = 0); inline int getValue() const {return value;} virtual std::string toString(int indent) const override; virtual void save(PackStream* stream) const override; virtual void load(PackStream* stream) override; virtual void copy(DefinitionNode* destination) const override; /** * Change the int value stored. * * The DiffManager is used as intermediary, so that the change may not happen immediately. */ void setValue(int new_value); const IntDiff *produceDiff(int new_value) const; void generateInitDiffs(std::vector *diffs) const; virtual bool applyDiff(const DefinitionDiff *diff, bool backward=false) override; private: int value; }; } } #endif // INTNODE_H