- Implemented ColPriority, with 'default' and 'long' formats.
- Implemented ColProject 'parent' format.
This commit is contained in:
Paul Beckingham 2011-04-29 19:33:54 -04:00
parent dd1be996a6
commit 9fd819e3a0
9 changed files with 195 additions and 16 deletions

View file

@ -45,10 +45,11 @@ public:
std::string getStyle () { return _style; }
std::string getLabel () { return _label; }
void setStyle (const std::string& value) { _style = value; }
void setLabel (const std::string& value) { _label = value; }
std::string type () const { return _type; }
virtual void setStyle (const std::string& value) { _style = value; }
virtual void setLabel (const std::string& value) { _label = value; }
virtual void measure (Task&, int&, int&) = 0;
virtual void renderHeader (std::vector <std::string>&, int, Color&);
virtual void render (std::vector <std::string>&, Task&, int, Color&) = 0;