2014-10-20 17:09:03 +00:00
|
|
|
#ifndef MODEL_HH_INCLUDED
|
|
|
|
#define MODEL_HH_INCLUDED
|
|
|
|
|
|
|
|
#include <string>
|
2014-10-22 20:53:46 +00:00
|
|
|
#include <ACGL/OpenGL/Creator/VertexArrayObjectCreator.hh>
|
2014-10-20 17:09:03 +00:00
|
|
|
|
|
|
|
class Model {
|
|
|
|
public:
|
|
|
|
Model(std::string filePath);
|
|
|
|
~Model();
|
2014-10-22 20:53:46 +00:00
|
|
|
ACGL::OpenGL::SharedVertexArrayObject getReference();
|
2014-10-20 17:09:03 +00:00
|
|
|
private:
|
2014-10-22 20:53:46 +00:00
|
|
|
ACGL::OpenGL::SharedVertexArrayObject reference;
|
2014-10-20 17:09:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|