TDME2  1.9.200
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
SceneWriter.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <string>
4 
5 #include <tdme/tdme.h>
9 
12 
13 using std::string;
14 
18 
19 /**
20  * Scene writer
21  * @author Andreas Drewke
22  */
24 {
25 
26 public:
27  /**
28  * Writes a scene
29  * @param pathName path name
30  * @param fileName file name
31  * @param scene scene
32  * @throws tdme::os::filesystem::FileSystemException
33  * @throws tdme::engine::fileio::models::ModelFileIOException
34  */
35  static void write(const string& pathName, const string& fileName, Scene* scene);
36 
37 };
static void write(const string &pathName, const string &fileName, Scene *scene)
Writes a scene.
Definition: SceneWriter.cpp:59
Scene definition.
Definition: Scene.h:50