| 112 | } |
| 113 | |
| 114 | std::string getNameValueString() const |
| 115 | { |
| 116 | std::string Out; |
| 117 | Out.append(_Name); |
| 118 | Out.append(": "); |
| 119 | |
| 120 | for(auto const &Element : _Data) |
| 121 | { |
| 122 | Out.append(" "); |
| 123 | |
| 124 | for(Index nElement = 0; nElement < Element.second.size(); nElement++) |
| 125 | { |
| 126 | Out.append(std::to_string(Element.second.operator[](nElement))); |
| 127 | Out.append(" "); |
| 128 | } |
| 129 | } |
| 130 | |
| 131 | return Out; |
| 132 | } |
| 133 | |
| 134 | protected: |
| 135 | /** construct a specific data configuration */ |