parts/buglist/bug.h
Go to the documentation of this file.00001 /*************************************************************************** 00002 bug.h - 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 #ifndef BUG_H 00019 #define BUG_H 00020 00021 #include <qdatetime.h> 00022 #include <qstring.h> 00023 00030 class Bug 00031 { 00032 public: 00034 Bug (); 00035 ~Bug (); 00036 00037 public: 00038 QString BugID; 00039 QString Description; 00040 QString Severity; 00041 QString BugClass; 00042 QString Location; 00043 QString AssignedTo; 00044 QDate AssignedDate; 00045 QString AssignedEMail; 00046 QString ReportUserName; 00047 QString ReportEMail; 00048 QDate ReportDate; 00049 QString Package; 00050 QString VersionNo; 00051 QString Notes; 00052 QString Workaround; 00053 QDate FixScheduled; 00054 QString SysInfo; 00055 QString Priority; 00056 QString Repeat; 00057 }; 00058 00059 #endif 00060