MOOS 0.2375
|
00001 #ifndef _indexWriter_h_ 00002 #define _indexWriter_h_ 00003 00004 #include <string> 00005 00006 #include "recordTypes.h" 00007 00008 class indexWriter 00009 { 00010 public: 00011 indexWriter() {} 00012 00013 aloglib::idxHeader m_alogHeader; 00014 aloglib::idxMsgList m_alogMsgList; 00015 aloglib::idxSrcList m_alogSrcList; 00016 std::vector<aloglib::idxRec> m_alogRecords; 00017 00018 00019 void parseAlogFile( std::string alogFileName ); 00020 void writeIndexFile( std::string alogIndexName ); 00021 }; 00022 00023 #endif // _indexWriter_h_ 00024