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