| 453 | } |
| 454 | |
| 455 | string Property::GetValuesString() const { |
| 456 | stringstream ss; |
| 457 | |
| 458 | for (unsigned int i = 0; i < values.size(); ++i) { |
| 459 | if (i != 0) |
| 460 | ss << " "; |
| 461 | ss << Get<string>(i); |
| 462 | } |
| 463 | return ss.str(); |
| 464 | } |
| 465 | |
| 466 | //------------------------------------------------------------------------------ |
| 467 | // Get basic types |