You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdesdk/kbugbuster/backend/bugdetailspart.h

22 lines
438 B

#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