From f5a79aec4ea56c9a4bff8c1d3f1e022a60a4ccc5 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Tue, 9 Dec 2003 12:07:41 +0000 Subject: [PATCH] Added get() method to ReaderWriterProxy class to allow the readerwriter to be obtained once its constructed. --- include/osgDB/Registry | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/osgDB/Registry b/include/osgDB/Registry index 28264e81f..92aa69010 100644 --- a/include/osgDB/Registry +++ b/include/osgDB/Registry @@ -323,6 +323,8 @@ class RegisterReaderWriterProxy } } + T* get() { return _rw.get(); } + protected: osg::ref_ptr _rw; };