5 * Created by Sarah Westcott on 1/2/09.
6 * Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
10 #include "nocommands.h"
12 //**********************************************************************************************************************
14 NoCommand::NoCommand(string option) {}
16 //**********************************************************************************************************************
18 int NoCommand::execute(){
19 //Could choose to give more help here?fdsah
20 cout << "Invalid command.\n";
22 CommandFactory* valid = CommandFactory::getInstance();
23 valid->printCommands(cout);
28 //**********************************************************************************************************************