#include "Property.h" #include "Value.h" #include Property::Property(QString s) { name = s; } Property::~Property() {} void Property::display(void) const { qDebug() << name; for (int i=0; idisplay(); } } void Property::addValue(Value * v) { sample_values.push_back(v); }