]> git.donarmstrong.com Git - mothur.git/blob - getlinecommand.h
added mothur.h and fixed includes in many files
[mothur.git] / getlinecommand.h
1 #ifndef GETLINECOMMAND_H
2 #define GETLINECOMMAND_H
3
4 /*
5  *  getlinecommand.h
6  *  Mothur
7  *
8  *  Created by Thomas Ryabin on 1/30/09.
9  *  Copyright 2009 __MyCompanyName__. All rights reserved.
10  *
11  */
12
13 #include "command.hpp"
14 #include "readmatrix.hpp"
15
16 class GlobalData;
17
18 class GetlineCommand : public Command {
19 public:
20         GetlineCommand();
21         ~GetlineCommand();
22         int execute();
23         
24 private:
25         GlobalData* globaldata;
26         string filename;
27 };
28
29 #endif