2008-06-17 02:46:39 +02:00
|
|
|
#ifndef __LOADOBJ_H
|
|
|
|
#define __LOADOBJ_H
|
|
|
|
|
2008-07-31 00:51:39 +02:00
|
|
|
#include <cstdlib>
|
2008-06-17 02:46:39 +02:00
|
|
|
#include "modelloader.h"
|
|
|
|
#include "model.h"
|
|
|
|
#include "../extstring.h"
|
|
|
|
|
2008-08-10 17:14:54 +02:00
|
|
|
namespace segl {
|
|
|
|
|
2008-06-17 02:46:39 +02:00
|
|
|
class LoadOBJ : public Modelloader {
|
|
|
|
private:
|
|
|
|
|
|
|
|
public:
|
|
|
|
LoadOBJ(std::string _filename);
|
|
|
|
bool load(Model *m);
|
|
|
|
};
|
|
|
|
|
2008-08-10 17:14:54 +02:00
|
|
|
} // namespace segl
|
|
|
|
|
2008-06-17 02:46:39 +02:00
|
|
|
#endif
|