blob: e07ad3a2cd61e8db41497d7a6f0b30977cf5e8b9 (
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
|
#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 QByteArray &data );
private:
Bug m_bug;
};
#endif
/*
* vim:ts=4:sw=4:et
*/
|