]> git.donarmstrong.com Git - mothur.git/blob - nameassignment.hpp
Initial revision
[mothur.git] / nameassignment.hpp
1 #ifndef NAMEASSIGNMENT_HPP
2 #define NAMEASSIGNMENT_HPP
3
4 using namespace std;
5
6 #include <string>
7 #include <map>
8 #include "utilities.hpp"
9 #include "listvector.hpp"
10
11 class NameAssignment : public map<string,int> {
12 public:
13         NameAssignment(string);
14         void readMap(int, int);
15         ListVector getListVector();
16         int get(string);
17         void print();
18 private:
19         ifstream fileHandle;
20         ListVector list;
21 };
22
23
24
25
26 #endif