00001 /* $Id: OSOptionsStruc.cpp 4210 2011-06-28 09:44:54Z Gassmann $ */ 00022 #include "OSOptionsStruc.h" 00023 #include "OSOutput.h" 00024 #include <string> 00025 00026 osOptionsStruc::osOptionsStruc() 00027 { 00028 resetOptions(); 00029 } 00030 00031 void osOptionsStruc::resetOptions() 00032 { 00033 this->configFile = ""; 00034 this->osilFile = ""; 00035 this->osil = ""; 00036 this->osolFile = ""; 00037 this->osol = ""; 00038 this->osrlFile = ""; 00039 this->osrl = ""; 00040 this->insListFile = ""; 00041 this->insList = ""; 00042 this->serviceLocation = ""; 00043 this->serviceMethod = ""; 00044 this->osplInputFile = ""; 00045 this->osplInput = ""; 00046 this->osplOutputFile = ""; 00047 this->osplOutput = ""; 00048 this->mpsFile = ""; 00049 this->mps = ""; 00050 this->nlFile = ""; 00051 this->nl = ""; 00052 this->datFile = ""; 00053 this->dat = ""; 00054 this->gamsControlFile = ""; 00055 this->solverName = ""; 00056 this->browser = ""; 00057 this->printLevel = DEFAULT_OUTPUT_LEVEL; 00058 this->logFile = ""; 00059 this->filePrintLevel = DEFAULT_OUTPUT_LEVEL; 00060 this->jobID = ""; 00061 this->invokeHelp = false; 00062 this->writeVersion = false; 00063 this->printModel = false; 00064 this->printRowNumberAsString = ""; 00065 this->quit = false; 00066 } 00067