00001 #ifndef FORMATCHECK_H 00002 #define FORMATCHECK_H 00003 00004 #include "assets.inc" 00005 00006 class FormatCheck 00007 { 00008 public: 00009 FormatCheck(Asset *asset); 00010 ~FormatCheck(); 00011 00012 int check_format(); 00013 00014 private: 00015 Asset *asset; 00016 }; 00017 00018 00019 #endif
1.4.4