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