Files
OpenSceneGraph/src/osgPlugins/flt/FindExternalModelVisitor.h
Robert Osfield 0fcc08d867 From Sondra Iversion "Loading a single model from an externally
referenced file is a standard option for OpenFlight and is specified by
including the modelname in angle brackets, such as:  filename<modelname>.

The attached code identifies and handles this case."
2004-10-07 10:03:27 +00:00

37 lines
708 B
C++

// FindExternalModelVisitor.h
#ifndef __FIND_EXTERNAL_MODEL_VISITOR_H_
#define __FIND_EXTERNAL_MODEL_VISITOR_H_
#include <iostream>
#include <osg/Node>
#include <osg/NodeVisitor>
namespace flt {
/**
* A visitor to find a named node.
*/
class FindExternalModelVisitor : public osg::NodeVisitor
{
public:
FindExternalModelVisitor( ) : osg::NodeVisitor( TRAVERSE_ALL_CHILDREN ) {}
virtual void apply( osg::Node &node );
void setModelName( std::string modelName ) { _modelName = modelName; }
osg::Node *getModel() { return _model.get(); }
private:
std::string _modelName;
osg::ref_ptr<osg::Node> _model;
};
}; // end namespace flt
#endif // __FIND_EXTERNAL_MODEL_VISITOR_H_