]> git.donarmstrong.com Git - mothur.git/blobdiff - quitcommand.cpp
moved mothur's source into a folder to make grabbing just the source easier on github
[mothur.git] / quitcommand.cpp
diff --git a/quitcommand.cpp b/quitcommand.cpp
deleted file mode 100644 (file)
index 2c302e9..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-/*
- *  quitcommand.cpp
- *  Dotur
- *
- *  Created by Sarah Westcott on 1/2/09.
- *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
- *
- */
-
-#include "quitcommand.h"
-
-//**********************************************************************************************************************
-QuitCommand::QuitCommand(string option) {
-               abort = false; calledHelp = false;   
-               
-               //allow user to run help
-               if(option == "help") { help(); abort = true; calledHelp = true; }
-               else if(option == "citation") { citation(); abort = true; calledHelp = true;}
-
-}
-//**********************************************************************************************************************
-QuitCommand::~QuitCommand(){}
-//**********************************************************************************************************************
-int QuitCommand::execute(){
-       if (abort == true) { return 0; }
-       return 1;
-}
-//**********************************************************************************************************************