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/bugimpl.h

34 lines
800 B

#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