Moved all references to osg::Cloner to osg::CopyOp.

This commit is contained in:
Robert Osfield
2002-01-29 14:04:06 +00:00
parent 9a6a96a7e7
commit 02ef10fcfa
64 changed files with 182 additions and 185 deletions

View File

@@ -10,14 +10,14 @@ Geode::Geode()
{
}
Geode::Geode(const Geode& geode,const Cloner& cloner):
Node(geode,cloner)
Geode::Geode(const Geode& geode,const CopyOp& copyop):
Node(geode,copyop)
{
for(DrawableList::const_iterator itr=geode._drawables.begin();
itr!=geode._drawables.end();
++itr)
{
Drawable* drawable = cloner(itr->get());
Drawable* drawable = copyop(itr->get());
if (drawable) addDrawable(drawable);
}
}