blob: 7e1cfe7b8d62d41e4daae31392ac60ab0a571cdd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#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
|