#ifndef PROPERTY_H #define PROPERTY_H #include #include class Value; class Property { public: Property(std::string); virtual ~Property(); private: std::string name; std::vector sample_values; // association 1..* public: void display(void) const; void addValue(Value *); }; #endif // PROPERTY_H