+// We safely ignore some C++11 keywords that older versions of SWIG cannot
+// handle.
+#if SWIG_VERSION < 0x030000
+%define final %enddef
+%define override %enddef
+#endif
+
%import "bindings/swig.h"
%include "stdint.i"
const std::vector<Expr>& values) throw();
SetUserAttributeCommand(const std::string& attr, Expr expr,
const std::string& value) throw();
- ~SetUserAttributeCommand() throw() {}
+ ~SetUserAttributeCommand() throw() override {}
- void invoke(SmtEngine* smtEngine);
+ void invoke(SmtEngine* smtEngine) override;
Command* exportTo(ExprManager* exprManager,
- ExprManagerMapCollection& variableMap);
- Command* clone() const;
- std::string getCommandName() const throw();
+ ExprManagerMapCollection& variableMap) override;
+ Command* clone() const override;
+ std::string getCommandName() const throw() override;
private:
SetUserAttributeCommand(const std::string& attr, Expr expr,