#include "Property.h" #include "Value.h" #include using namespace std; Property::Property(string s) { name = s; } Property::~Property() {} void Property::display(void) const { cout << name << endl; for (unsigned int i=0; idisplay(); } } void Property::addValue(Value * v) { sample_values.push_back(v); }