#ifndef __LOADOBJ_H #define __LOADOBJ_H #include #include "modelloader.h" #include "model.h" #include "../extstring.h" namespace segl { class LoadOBJ : public Modelloader { private: public: LoadOBJ(std::string _filename); bool load(Model *m); }; } // namespace segl #endif