UDAs - User Defined Attributes

- Added support for named allowable values.
This commit is contained in:
Paul Beckingham 2012-07-02 22:22:19 -04:00
parent 0d3f6f990d
commit 7f1d8c3682
5 changed files with 34 additions and 2 deletions

View file

@ -41,9 +41,13 @@ public:
ColumnUDA ();
~ColumnUDA ();
bool validate (std::string&);
void measure (Task&, int&, int&);
void render (std::vector <std::string>&, Task&, int, Color&);
public:
std::vector <std::string> _values;
private:
bool _hyphenate;
};