OpenSceneGraph/src/osgGA/GUIEventHandlerVisitor.cpp
2003-06-24 15:40:09 +00:00

10 lines
263 B
C++

#include <osgGA/GUIEventHandlerVisitor>
#include <osgGA/GUIEventHandler>
void osgGA::GUIEventHandlerVisitor::visit(osgGA::CompositeGUIEventHandler& cgeh)
{
for(unsigned int i=0; i<cgeh.getNumChildren(); i++){
cgeh.getChild(i)->accept(*this);
}
}