]> git.donarmstrong.com Git - mothur.git/blob - readtreecommand.h
added mothur.h and fixed includes in many files
[mothur.git] / readtreecommand.h
1 #ifndef READTREECOMMAND_H
2 #define READTREECOMMAND_H
3
4 /*
5  *  readtreecommand.h
6  *  Mothur
7  *
8  *  Created by Sarah Westcott on 1/23/09.
9  *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
10  *
11  */
12
13 #include "command.hpp"
14 #include "readtree.h"
15 #include "treemap.h"
16
17 class GlobalData;
18
19 class ReadTreeCommand : public Command {
20 public:
21         ReadTreeCommand();
22         ~ReadTreeCommand();
23         int execute();
24         
25 private:
26         GlobalData* globaldata;
27         ReadTree* read;
28         TreeMap* treeMap;
29         string filename;
30 };
31
32
33 #endif