]> git.donarmstrong.com Git - mothur.git/blob - nameassignment.hpp
fixes while testing 1.33.0
[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         NameAssignment();
11         void readMap();
12         ListVector getListVector();
13         int get(string);
14         string get(int);
15         void print(ostream&);
16         void push_back(string);
17 private:
18         ifstream fileHandle;
19         ListVector list;
20         map<int, string> reverse;
21         MothurOut* m;
22 };
23
24
25
26
27 #endif