void TStageObjectSpline::loadData(TIStream &is) { std::vector<TThickPoint> points; VersionNumber tnzVersion = is.getVersion(); if (tnzVersion < VersionNumber(1, 16)) { while (!is.eos()) { TThickPoint p; is >> p.x >> p.y >> p.thick; points.push_back(p); } } else {
void TMacroFx::loadData(TIStream &is) { VersionNumber tnzVersion = is.getVersion(); string tagName; while (is.openChild(tagName)) { if (tagName == "root") { TPersist *p = 0; is >> p; m_root = dynamic_cast<TFx *>(p); } else if (tagName == "nodes") {