00001
00015 #include "OSOutput.h"
00016 #include "OSErrorClass.h"
00017 #include "OSDefaultSolver.h"
00018
00019 #include<iostream>
00020
00021 using std::cout;
00022 using std::endl;
00023
00024 DefaultSolver::DefaultSolver():
00025 osil(""),
00026 osol(""),
00027 osrl(""),
00028 osinstance( NULL),
00029 osoption( NULL),
00030 osresult( NULL),
00031 sSolverName(""),
00032 bCallbuildSolverInstance( false),
00033 bSetSolverOptions( false)
00034
00035 {
00036
00037
00038 }
00039
00040 DefaultSolver::~DefaultSolver()
00041 {
00042 #ifndef NDEBUG
00043 osoutput->OSPrint(ENUM_OUTPUT_AREA_OSSolverInterfaces, ENUM_OUTPUT_LEVEL_debug, "Default Solver destructor called");
00044 #endif
00045
00046
00047
00048
00049
00050
00051
00052 }
00053