Bug test  1
What.h
Go to the documentation of this file.
1 
2 
3 #include <map>
4 #include <string>
5 
7 namespace abc
8 {
9  typedef std::map<std::string, unsigned> IndexMap;
10  typedef std::map<std::string, std::string> NameMap;
11 
12  class CsvReader;
13 
15  struct What
16  {
17  static What read(CsvReader& reader, const NameMap& map);
18  static What read(CsvReader& reader, const IndexMap& map);
19  };
20 
21 }