You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
322 B

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