| 207 | } |
| 208 | |
| 209 | size_t VEGAParser::get_attribute_size(const std::string& name) const { |
| 210 | std::stringstream err_msg; |
| 211 | err_msg << "Attribute " << name << " does not exists"; |
| 212 | throw IOError(err_msg.str()); |
| 213 | } |
| 214 | |
| 215 | void VEGAParser::export_attribute(const std::string& name, Float* buffer) { |
| 216 | std::stringstream err_msg; |