- Timestamp:
- 03/11/10 17:53:35 (3 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/src/osgPlugins/3ds/WriterNodeVisitor.h
r11194 r11203 59 59 const std::string & srcDirectory); 60 60 61 bool suceedLastApply() const; 62 void failedApply(); 61 bool succeeded() const { return _succeeded; } 63 62 virtual void apply(osg::Geode &node); 64 63 virtual void apply(osg::Billboard &node); … … 146 145 * \return the number of vertices in the geode. 147 146 */ 148 unsigned int 149 calcVertices(osg::Geode & geo); 147 unsigned int calcVertices(osg::Geode & geo); 150 148 151 149 /** … … 198 196 void apply3DSMatrixNode(osg::Node &node, const osg::Matrix & m, const char * const prefix); 199 197 200 bool _suc eedLastApply;198 bool _succeeded; 201 199 std::string _directory; 202 200 std::string _srcDirectory;
