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.
22 lines
445 B
22 lines
445 B
#ifndef BUGDETAILSPART_H
|
|
#define BUGDETAILSPART_H
|
|
|
|
#include <tqvaluelist.h>
|
|
#include <tqdatetime.h>
|
|
|
|
struct BugDetailsPart
|
|
{
|
|
typedef TQValueList<BugDetailsPart> List;
|
|
|
|
BugDetailsPart () {}
|
|
BugDetailsPart( const Person &_sender, const TQDateTime &_date,
|
|
const TQString &_text )
|
|
: sender( _sender ), date( _date ), text( _text ) {}
|
|
|
|
Person sender;
|
|
TQDateTime date;
|
|
TQString text;
|
|
};
|
|
|
|
#endif
|