"Incomplete type" usually means a type has been declared but not defined
before it's used. e.g.
namespace std{ class string; }
std::string mystring;//error, string hasn't been defined

The solution to this is to #include <string> before #including the header
where the error occurs.
HTH
_______________________________________________
osg-users mailing list
[email protected]
http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org

Reply via email to