- Added a missing method to access Column::_name.
This commit is contained in:
Paul Beckingham 2014-08-16 16:12:46 -04:00
parent b235b6ca60
commit 77047cf07c

View file

@ -46,6 +46,7 @@ public:
bool operator== (const Column&) const; // TODO Is this necessary?
virtual ~Column ();
std::string name () const { return _name; }
std::string style () const { return _style; }
std::string label () const { return _label; }
std::string type () const { return _type; }