]> git.donarmstrong.com Git - mothur.git/blob - display.h
When Pat tried to compile mothur in Ubuntu linux, there were a number of minor proble...
[mothur.git] / display.h
1 #ifndef DISPLAY_H
2 #define DISPLAY_H
3
4 #include "sabundvector.hpp"
5 #include "sharedsabundvector.h"
6 #include "calculator.h"
7 #include "fileoutput.h"
8 #include <vector>
9
10 using namespace std;
11
12 /***********************************************************************/
13
14 class Display {
15         
16 public:
17         virtual void update(SAbundVector* rank) = 0;
18         virtual void update(SharedRAbundVector* shared1, SharedRAbundVector* shared2, int numSeqs, int numGroupComb) = 0;
19         virtual void init(string) = 0;
20         virtual void reset() = 0;
21         virtual void close() = 0;
22         
23 private:
24
25 };
26
27 /***********************************************************************/
28
29 #endif