]> git.donarmstrong.com Git - mothur.git/blob - commandfactory.hpp
Initial revision
[mothur.git] / commandfactory.hpp
1 #ifndef COMMANDFACTORY_HPP
2 #define COMMANDFACTORY_HPP
3
4 /*
5  *  commandfactory.h
6  *  
7  *
8  *  Created by Pat Schloss on 10/25/08.
9  *  Copyright 2008 Patrick D. Schloss. All rights reserved.
10  *
11  */
12
13 class Command;
14
15 class CommandFactory {
16 public:
17         CommandFactory();
18         ~CommandFactory();
19         Command* getCommand(string);
20 private:
21         Command* command;
22
23 };
24
25 #endif