Added get() method to ReaderWriterProxy class to allow the readerwriter to

be obtained once its constructed.
This commit is contained in:
Robert Osfield
2003-12-09 12:07:41 +00:00
parent 6d5eb79804
commit f5a79aec4e

View File

@@ -323,6 +323,8 @@ class RegisterReaderWriterProxy
}
}
T* get() { return _rw.get(); }
protected:
osg::ref_ptr<T> _rw;
};