]> git.donarmstrong.com Git - mothur.git/blob - getlinecommand.h
295fe9944e86dee8298e85a7f818e5656c9ee08d
[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 <iostream>
14 #include <fstream>
15 #include "command.hpp"
16 #include "readmatrix.hpp"
17
18 class GlobalData;
19
20 class GetlineCommand : public Command {
21 public:
22         GetlineCommand();
23         ~GetlineCommand();
24         int execute();
25         
26 private:
27         GlobalData* globaldata;
28         string filename;
29 };
30
31 #endif