Added copyop parameter to cloneOptions() method

This commit is contained in:
Robert Osfield 2011-02-14 16:05:33 +00:00
parent 37cc59fe07
commit 98b1f15a45

View File

@ -114,7 +114,7 @@ class OSGDB_EXPORT Options : public osg::Object
META_Object(osgDB,Options);
Options* cloneOptions() const { return static_cast<Options*>(clone(osg::CopyOp::SHALLOW_COPY)); }
Options* cloneOptions(const osg::CopyOp& copyop=osg::CopyOp::SHALLOW_COPY) const { return static_cast<Options*>(clone(copyop)); }
/** Set the general Options string.*/
void setOptionString(const std::string& str) { _str = str; parsePluginStringData(str); }