Attachment 'ReaderParser.hh'
Download 1 #ifndef __READERPARSER_HH__
2 #define __READERPARSER_HH__
3 #include "SimpleParserBase.hh"
4
5 #include <vector>
6 #include <map>
7 #include <iostream>
8
9 class ReaderParser: public SimpleParserBase
10 {
11
12 public:
13 std::vector<std::string> list1;
14 std::vector<std::string> list2;
15 std::string outfilename;
16 std::string pairsfilename;
17
18 public:
19 ReaderParser();
20
21 private:
22 bool parseOutFileToken( std::string& file );
23 bool parsePairsFileToken( std::string& file );
24 bool parseFile1Token( std::string& file );
25 bool parseFile2Token( std::string& file );
26
27 };
28
29 std::ostream& operator<<(std::ostream& out, const ReaderParser& steer);
30
31 #endif //__READERPARSER_HH__
32
Attached Files
To refer to attachments on a page, use attachment:filename, as shown below in the list of files. Do NOT use the URL of the [get] link, since this is subject to change and can break easily.You are not allowed to attach a file to this page.