Revert "Moved the Options constructors and destructor implementaions into the cpp to make it easier to do debugging"
This reverts commit 0fc7aa8cc0.
This commit is contained in:
@@ -16,26 +16,6 @@
|
||||
|
||||
using namespace osgDB;
|
||||
|
||||
|
||||
Options::Options():
|
||||
osg::Object(true),
|
||||
_objectCacheHint(CACHE_ARCHIVES),
|
||||
_precisionHint(FLOAT_PRECISION_ALL),
|
||||
_buildKdTreesHint(NO_PREFERENCE)
|
||||
{
|
||||
}
|
||||
|
||||
Options::Options(const std::string& str):
|
||||
osg::Object(true),
|
||||
_str(str),
|
||||
_objectCacheHint(CACHE_ARCHIVES),
|
||||
_precisionHint(FLOAT_PRECISION_ALL),
|
||||
_buildKdTreesHint(NO_PREFERENCE)
|
||||
{
|
||||
parsePluginStringData(str);
|
||||
}
|
||||
|
||||
|
||||
Options::Options(const Options& options,const osg::CopyOp& copyop):
|
||||
osg::Object(options,copyop),
|
||||
_str(options._str),
|
||||
@@ -52,14 +32,7 @@ Options::Options(const Options& options,const osg::CopyOp& copyop):
|
||||
_fileLocationCallback(options._fileLocationCallback),
|
||||
_fileCache(options._fileCache),
|
||||
_terrain(options._terrain),
|
||||
_parentGroup(options._parentGroup)
|
||||
{
|
||||
}
|
||||
|
||||
Options::~Options()
|
||||
{
|
||||
abort();
|
||||
}
|
||||
_parentGroup(options._parentGroup) {}
|
||||
|
||||
void Options::parsePluginStringData(const std::string& str, char separator1, char separator2)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user