bug.cpp
Go to the documentation of this file.00001 /*************************************************************************** 00002 bug.cpp - description 00003 ------------------- 00004 begin : Sun Dec 3 2000 00005 copyright : (C) 2000 by Ivan Hawkes 00006 email : blackhawk@ivanhawkes.com 00007 ***************************************************************************/ 00008 00009 /*************************************************************************** 00010 * * 00011 * This program is free software; you can redistribute it and/or modify * 00012 * it under the terms of the GNU General Public License as published by * 00013 * the Free Software Foundation; either version 2 of the License, or * 00014 * (at your option) any later version. * 00015 * * 00016 ***************************************************************************/ 00017 00018 #include "bug.h" 00019 00020 00021 Bug::Bug () 00022 { 00023 // Default levels for severity and priority. 00024 Severity = "normal"; 00025 Priority = "normal"; 00026 00027 // Put a good default in place. 00028 ReportDate = QDateTime::currentDateTime ().date (); 00029 } 00030 00031 00032 Bug::~Bug () 00033 { 00034 }