OpenMW
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
writescene.hpp
Go to the documentation of this file.
1 #ifndef OPENMW_COMPONENTS_WRITESCENE_H
2 #define OPENMW_COMPONENTS_WRITESCENE_H
3 
4 #include <string>
5 
6 namespace osg
7 {
8  class Node;
9 }
10 
11 namespace SceneUtil
12 {
13 
14  void writeScene(osg::Node* node, const std::string& filename, const std::string& format);
15 
16 }
17 
18 #endif
void writeScene(osg::Node *node, const std::string &filename, const std::string &format)
Definition: writescene.cpp:11