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.
34 lines
530 B
34 lines
530 B
#ifndef __bugdetailsjob_h__
|
|
#define __bugdetailsjob_h__
|
|
|
|
#include "bugjob.h"
|
|
#include "bug.h"
|
|
#include "bugdetails.h"
|
|
#include "bugdetailspart.h"
|
|
|
|
class BugDetailsJob : public BugJob
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
BugDetailsJob( BugServer * );
|
|
virtual ~BugDetailsJob();
|
|
|
|
void start( const Bug &bug );
|
|
|
|
signals:
|
|
void bugDetailsAvailable( const Bug &bug, const BugDetails &details );
|
|
|
|
protected:
|
|
virtual void process( const TQByteArray &data );
|
|
|
|
private:
|
|
Bug m_bug;
|
|
};
|
|
|
|
#endif
|
|
|
|
/*
|
|
* vim:ts=4:sw=4:et
|
|
*/
|