------------------------------------------------------------------------------
| 234 | |
| 235 | //------------------------------------------------------------------------------ |
| 236 | hid_t vtkHDFWriter::Implementation::GetStepsGroup(hid_t currentGroup) |
| 237 | { |
| 238 | if (H5Lexists(currentGroup, PATH::STEPS.c_str(), H5P_DEFAULT)) |
| 239 | { |
| 240 | // Store the last steps group accessed. There can be multiple for a given file |
| 241 | // if it composite. This Steps group is only used internally. |
| 242 | this->StepsGroup = H5Gopen(currentGroup, PATH::STEPS.c_str(), H5P_DEFAULT); |
| 243 | return this->StepsGroup; |
| 244 | } |
| 245 | return H5I_INVALID_HID; |
| 246 | } |
| 247 | |
| 248 | //------------------------------------------------------------------------------ |
| 249 | std::vector<vtkHDFWriter::Implementation::PolyDataTopos> |
no test coverage detected