00001 #ifndef PHDPARSER_H 00002 #define PHDPARSER_H 00003 00004 #include <string> 00005 #include "trappervector.h" 00006 00007 class PhdParser 00008 { 00009 public: 00010 PhdParser(std::string infile); 00011 00012 TrapperVector<Q_UINT32> parse(); 00013 00014 private: 00015 std::string filename; 00016 }; 00017 00018 00019 #endif //PHDPARSER_H