|
#ifndef __MODELLOADER_H
|
|
#define __MODELLOADER_H
|
|
|
|
#include <string>
|
|
#include <fstream>
|
|
#include "model.h"
|
|
|
|
|
|
class Modelloader {
|
|
protected:
|
|
std::string filename;
|
|
public:
|
|
Modelloader(std::string _filename);
|
|
virtual ~Modelloader() { };
|
|
virtual bool load(Model *m)=0;
|
|
};
|
|
|
|
#endif
|