blob: 946ea7a5dc6669a71ee9cb642f6c938b5952b298 (
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 __bugdetailsjob_h__
#define __bugdetailsjob_h__
#include "bugjob.h"
#include "bug.h"
#include "bugdetails.h"
#include "bugdetailspart.h"
class BugDetailsJob : public BugJob
{
Q_OBJECT
TQ_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
*/
|