|
From: <br...@us...> - 2008-09-21 06:24:50
|
Revision: 3653
http://openvrml.svn.sourceforge.net/openvrml/?rev=3653&view=rev
Author: braden
Date: 2008-09-21 06:24:45 +0000 (Sun, 21 Sep 2008)
Log Message:
-----------
Removed unnecessary includes.
Modified Paths:
--------------
trunk/ChangeLog
trunk/src/libopenvrml/openvrml/x3d_geometry2d.cpp
trunk/src/libopenvrml/openvrml/x3d_texturing.cpp
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2008-09-21 05:29:16 UTC (rev 3652)
+++ trunk/ChangeLog 2008-09-21 06:24:45 UTC (rev 3653)
@@ -1,5 +1,12 @@
2008-09-21 Braden McDaniel <br...@en...>
+ Removed unnecessary includes.
+
+ * src/libopenvrml/openvrml/x3d_geometry2d.cpp
+ * src/libopenvrml/openvrml/x3d_texturing.cpp
+
+2008-09-21 Braden McDaniel <br...@en...>
+
Moved X3D Texturing node implementations into a convenience
library.
Modified: trunk/src/libopenvrml/openvrml/x3d_geometry2d.cpp
===================================================================
--- trunk/src/libopenvrml/openvrml/x3d_geometry2d.cpp 2008-09-21 05:29:16 UTC (rev 3652)
+++ trunk/src/libopenvrml/openvrml/x3d_geometry2d.cpp 2008-09-21 06:24:45 UTC (rev 3653)
@@ -18,15 +18,8 @@
// along with this library; if not, see <http://www.gnu.org/licenses/>.
//
-# ifdef HAVE_CONFIG_H
-# include <config.h>
-# endif
-
-# include <boost/array.hpp>
-# include <private.h>
-# include "browser.h"
-# include "node_impl_util.h"
# include "x3d_geometry2d.h"
+# include "browser.h"
# include <x3d-geometry2d/arc2d.h>
# include <x3d-geometry2d/arc_close2d.h>
# include <x3d-geometry2d/circle2d.h>
@@ -36,6 +29,10 @@
# include <x3d-geometry2d/rectangle2d.h>
# include <x3d-geometry2d/triangle_set2d.h>
+# ifdef HAVE_CONFIG_H
+# include <config.h>
+# endif
+
void register_geometry2d_node_metatypes(openvrml::browser & b)
{
using boost::shared_ptr;
Modified: trunk/src/libopenvrml/openvrml/x3d_texturing.cpp
===================================================================
--- trunk/src/libopenvrml/openvrml/x3d_texturing.cpp 2008-09-21 05:29:16 UTC (rev 3652)
+++ trunk/src/libopenvrml/openvrml/x3d_texturing.cpp 2008-09-21 06:24:45 UTC (rev 3653)
@@ -18,17 +18,17 @@
// along with this library; if not, see <http://www.gnu.org/licenses/>.
//
-# ifdef HAVE_CONFIG_H
-# include <config.h>
-# endif
-
+# include "x3d_texturing.h"
# include "browser.h"
-# include "x3d_texturing.h"
# include <x3d-texturing/multi_texture.h>
# include <x3d-texturing/multi_texture_coordinate.h>
# include <x3d-texturing/multi_texture_transform.h>
# include <x3d-texturing/texture_coordinate_generator.h>
+# ifdef HAVE_CONFIG_H
+# include <config.h>
+# endif
+
void register_texturing_node_metatypes(openvrml::browser & b)
{
using boost::shared_ptr;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|