TDME2 1.9.121
ModelReader.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4#include <vector>
5
6#include <tdme/tdme.h>
13
14using std::string;
15using std::vector;
16
20
21/**
22 * Model reader class
23 * @author Andreas Drewke
24 * @version $Id$
25 */
27{
28private:
29 STATIC_DLL_IMPEXT static vector<string> extensions;
30public:
31 /**
32 * Get supported model extensions
33 */
34 static const vector<string>& getModelExtensions();
35
36 /**
37 * Reads a model
38 * @param pathName path name
39 * @param fileName file name
40 * @throws tdme::engine::fileio::models::ModelFileIOException
41 * @throws tdme::os::filesystem::FileSystemException
42 * @return texture data instance or null
43 */
44 static Model* read(const string& pathName, const string& fileName);
45};
static const vector< string > & getModelExtensions()
Get supported model extensions.
Definition: ModelReader.cpp:35
static Model * read(const string &pathName, const string &fileName)
Reads a model.
Definition: ModelReader.cpp:39
static STATIC_DLL_IMPEXT vector< string > extensions
Definition: ModelReader.h:29
Representation of a 3d model.
Definition: Model.h:32
#define STATIC_DLL_IMPEXT
Definition: tdme.h:11