]> git.donarmstrong.com Git - mothur.git/blob - nocommand.h
When Pat tried to compile mothur in Ubuntu linux, there were a number of minor proble...
[mothur.git] / nocommand.h
1 #ifndef NOCOMMAND_H
2 #define NOCOMMAND_H
3 /*
4  *  nocommand.h
5  *  Dotur
6  *
7  *  Created by Sarah Westcott on 1/2/09.
8  *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
9  *
10  */
11
12 /* This command is run if the user enters an invalid command. */
13
14 #include "command.hpp"
15
16 class NoCommand : public Command {
17
18 public:
19         NoCommand();
20         ~NoCommand();
21         int execute();
22         
23 private:
24                 
25 };
26
27 #endif