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