[Hdrflow-svn] SF.net SVN: hdrflow: [261] trunk/lib/extras/src
Status: Pre-Alpha
Brought to you by:
glslang
From: <gl...@us...> - 2007-08-20 21:11:41
|
Revision: 261 http://hdrflow.svn.sourceforge.net/hdrflow/?rev=261&view=rev Author: glslang Date: 2007-08-20 14:11:39 -0700 (Mon, 20 Aug 2007) Log Message: ----------- + corrects order of the namespaces Modified Paths: -------------- trunk/lib/extras/src/panoramic/panoramic.cpp trunk/lib/extras/src/raw/raw.cpp Modified: trunk/lib/extras/src/panoramic/panoramic.cpp =================================================================== --- trunk/lib/extras/src/panoramic/panoramic.cpp 2007-08-20 21:05:08 UTC (rev 260) +++ trunk/lib/extras/src/panoramic/panoramic.cpp 2007-08-20 21:11:39 UTC (rev 261) @@ -20,7 +20,7 @@ namespace ml = olib::openmedialib::ml; namespace pcos = olib::openpluginlib::pcos; -namespace extras { namespace hdrflow { namespace pan { +namespace hdrflow { namespace extras { namespace pan { namespace { @@ -116,19 +116,19 @@ bool openplugin_create_plugin( const char*, pl::openplugin** plug ) { - *plug = new extras::hdrflow::pan::panoramic_plugin; + *plug = new hdrflow::extras::pan::panoramic_plugin; return true; } void openplugin_destroy_plugin( pl::openplugin* plug ) { - delete static_cast<extras::hdrflow::pan::panoramic_plugin*>( plug ); + delete static_cast<hdrflow::extras::pan::panoramic_plugin*>( plug ); } OfxPlugin* OfxGetPlugin( int nth ) { if( nth == 0 ) - return &extras::hdrflow::pan::panoramic_ofx_plugin; + return &hdrflow::extras::pan::panoramic_ofx_plugin; return 0; } Modified: trunk/lib/extras/src/raw/raw.cpp =================================================================== --- trunk/lib/extras/src/raw/raw.cpp 2007-08-20 21:05:08 UTC (rev 260) +++ trunk/lib/extras/src/raw/raw.cpp 2007-08-20 21:11:39 UTC (rev 261) @@ -18,7 +18,7 @@ namespace il = olib::openimagelib::il; namespace pcos = olib::openpluginlib::pcos; -namespace extras { namespace hdrflow { namespace raw { +namespace hdrflow { namespace extras { namespace raw { namespace { @@ -99,13 +99,13 @@ bool openplugin_create_plugin( const char*, pl::openplugin** plug ) { - *plug = new extras::hdrflow::raw::raw_plugin; + *plug = new hdrflow::extras::raw::raw_plugin; return true; } void openplugin_destroy_plugin( pl::openplugin* plug ) { - delete static_cast<extras::hdrflow::raw::raw_plugin*>( plug ); + delete static_cast<hdrflow::extras::raw::raw_plugin*>( plug ); } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |