| 1382 | } |
| 1383 | |
| 1384 | void |
| 1385 | XdmfArray::setHeavyDataController(shared_ptr<XdmfHeavyDataController> newController) |
| 1386 | { |
| 1387 | // Since this is replacing the previous version which was designed to |
| 1388 | // completely replace the controller of the array |
| 1389 | // It will clear the current controllers before adding the new one in |
| 1390 | mHeavyDataControllers.clear(); |
| 1391 | mHeavyDataControllers.push_back(newController); |
| 1392 | this->setIsChanged(true); |
| 1393 | } |
| 1394 | |
| 1395 | void |
| 1396 | XdmfArray::setHeavyDataController(std::vector<shared_ptr<XdmfHeavyDataController> > & newControllers) |