00001 //============================================================================= 00002 // 00003 // OpenFlipper 00004 // Copyright (C) 2008 by Computer Graphics Group, RWTH Aachen 00005 // www.openflipper.org 00006 // 00007 //----------------------------------------------------------------------------- 00008 // 00009 // License 00010 // 00011 // OpenFlipper is free software: you can redistribute it and/or modify 00012 // it under the terms of the GNU Lesser General Public License as published by 00013 // the Free Software Foundation, either version 3 of the License, or 00014 // (at your option) any later version. 00015 // 00016 // OpenFlipper is distributed in the hope that it will be useful, 00017 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00018 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00019 // GNU Lesser General Public License for more details. 00020 // 00021 // You should have received a copy of the GNU Lesser General Public License 00022 // along with OpenFlipper. If not, see <http://www.gnu.org/licenses/>. 00023 // 00024 //----------------------------------------------------------------------------- 00025 // 00026 // $Revision: 5074 $ 00027 // $Author: wilden $ 00028 // $Date: 2009-02-25 18:27:57 +0100 (Mi, 25. Feb 2009) $ 00029 // 00030 //============================================================================= 00031 00032 00033 #include "JobInfo.hh" 00034 #include <iostream> 00035 00036 00037 JobInfo::JobInfo() : 00038 jobId(""), 00039 description(""), 00040 currentState(0), 00041 min(0), 00042 max(100), 00043 blocking(false), 00044 progressDialog(0) 00045 { 00046 }