00001 /* 00002 ** loaderoff.h 00003 ** 00004 ** Made by Arcila Romain 00005 ** Login <rarcila@riquier.emi.u-bordeaux1.fr> 00006 ** 00007 ** Started on Tue Nov 6 18:29:42 2007 Arcila Romain 00008 ** Last update Tue Nov 6 18:29:42 2007 Arcila Romain 00009 */ 00010 00011 #ifndef LOADEROFF_H_ 00012 # define LOADEROFF_H_ 00013 00014 #include "plugin_loader.h" 00015 00020 class LoaderOFF: public PluginLoader { 00021 00022 public: 00023 LoaderOFF(); 00024 virtual void run(); 00025 private: 00026 std::string skipUnusedCommentary(std::ifstream &stream) const; 00027 int readModel (const std::string path); 00028 00029 }; 00030 00031 00032 00033 #endif /* !LOADEROFF_H_ */