Introduce the concept of layer set name, using the osg::Object::s/getName() to store

the setname, and using a compound string (set:setname:filename) in place of standard filename when reading and writing
files.
This commit is contained in:
Robert Osfield
2008-08-28 16:15:57 +00:00
parent c8ef144532
commit ed617f87df
8 changed files with 229 additions and 267 deletions

View File

@@ -42,7 +42,7 @@ void CompositeLayer::write(DataOutputStream* out)
else
{
out->writeBool(false);
out->writeString(getFileName(i));
out->writeString(getCompoundName(i));
}
}
}