]> git.donarmstrong.com Git - mothur.git/blobdiff - commandfactory.hpp
Initial revision
[mothur.git] / commandfactory.hpp
diff --git a/commandfactory.hpp b/commandfactory.hpp
new file mode 100644 (file)
index 0000000..9bbba57
--- /dev/null
@@ -0,0 +1,25 @@
+#ifndef COMMANDFACTORY_HPP
+#define COMMANDFACTORY_HPP
+
+/*
+ *  commandfactory.h
+ *  
+ *
+ *  Created by Pat Schloss on 10/25/08.
+ *  Copyright 2008 Patrick D. Schloss. All rights reserved.
+ *
+ */
+
+class Command;
+
+class CommandFactory {
+public:
+       CommandFactory();
+       ~CommandFactory();
+       Command* getCommand(string);
+private:
+       Command* command;
+
+};
+
+#endif