summaryrefslogtreecommitdiffstats
path: root/kbugbuster/backend/bugimpl.h
blob: 2ca6fb3035b7a4db048f24cf179416820848ba70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#ifndef __bug_impl_h__
#define __bug_impl_h__

#include "person.h"
#include "bug.h"

#include <kurl.h>
#include <ksharedptr.h>

struct BugImpl : public TDEShared
{
public:
    BugImpl( const TQString &_title, const Person &_submitter, TQString _number,
        uint _age, Bug::Severity _severity, Person _developerTODO,
        Bug::Status _status, const Bug::BugMergeList& _mergedWith  )
    : age( _age ), title( _title ), submitter( _submitter ), number( _number ),
        severity( _severity ), developerTODO( _developerTODO ),
        status( _status ), mergedWith( _mergedWith )
    {
    }

    uint age;
    TQString title;
    Person submitter;
    TQString number;
    Bug::Severity severity;
    Person developerTODO;
    Bug::Status status;

    Bug::BugMergeList mergedWith;
};

#endif