summaryrefslogtreecommitdiffstats
path: root/kbugbuster/backend/bugdetailsjob.h
blob: 7be2bf3ecabdace429fede0ed5690507fcb14978 (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
#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