Column: Made ::validate const

This commit is contained in:
Paul Beckingham
2016-02-01 23:56:39 -05:00
parent 575433542f
commit db7ebf9029
4 changed files with 10 additions and 10 deletions

View File

@@ -57,7 +57,7 @@ public:
virtual void setLabel (const std::string& value) { _label = value; }
virtual void setReport (const std::string& value) { _report = value; }
virtual bool validate (std::string&);
virtual bool validate (const std::string&) const;
virtual void measure (const std::string&, unsigned int&, unsigned int&) {};
virtual void measure (Task&, unsigned int&, unsigned int&) {};
virtual void renderHeader (std::vector <std::string>&, int, Color&);