diff options
Diffstat (limited to 'kbugbuster/backend/bugdetailspart.h')
-rw-r--r-- | kbugbuster/backend/bugdetailspart.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/kbugbuster/backend/bugdetailspart.h b/kbugbuster/backend/bugdetailspart.h new file mode 100644 index 00000000..483057c8 --- /dev/null +++ b/kbugbuster/backend/bugdetailspart.h @@ -0,0 +1,21 @@ +#ifndef BUGDETAILSPART_H +#define BUGDETAILSPART_H + +#include <qvaluelist.h> +#include <qdatetime.h> + +struct BugDetailsPart +{ + typedef QValueList<BugDetailsPart> List; + + BugDetailsPart () {} + BugDetailsPart( const Person &_sender, const QDateTime &_date, + const QString &_text ) + : sender( _sender ), date( _date ), text( _text ) {} + + Person sender; + QDateTime date; + QString text; +}; + +#endif |