]> git.donarmstrong.com Git - mothur.git/blob - systemcommand.h
410a12e7657a1c0625281429e261a519dccf45ef
[mothur.git] / systemcommand.h
1 #ifndef SYSTEMCOMMAND_H
2 #define SYSTEMCOMMAND_H
3
4 /*
5  *  systemcommand.h
6  *  Mothur
7  *
8  *  Created by Sarah Westcott on 7/8/09.
9  *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
10  *
11  */
12
13 #include "command.hpp"
14
15
16 class SystemCommand : public Command {
17         
18         public:
19         
20                 SystemCommand(string);  
21                 ~SystemCommand(){};
22                 int execute();
23                 void help();    
24                 
25         private:
26                 string command;
27                 bool abort;
28                 
29 };
30
31 #endif
32