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.
|
|
|
#ifndef __bug_impl_h__
|
|
|
|
#define __bug_impl_h__
|
|
|
|
|
|
|
|
#include "person.h"
|
|
|
|
#include "bug.h"
|
|
|
|
|
|
|
|
#include <kurl.h>
|
|
|
|
#include <ksharedptr.h>
|
|
|
|
|
|
|
|
struct BugImpl : public KShared
|
|
|
|
{
|
|
|
|
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
|
|
|
|
|
|
|
|
// vim: set sw=4 ts=4 sts=4 et:
|
|
|
|
|