~ubuntu-branches/debian/sid/kdevelop/sid

« back to all changes in this revision

Viewing changes to languages/ada/backgroundparser.h

  • Committer: Bazaar Package Importer
  • Author(s): Jeremy Lainé
  • Date: 2006-05-23 18:39:42 UTC
  • Revision ID: james.westby@ubuntu.com-20060523183942-hucifbvh68k2bwz7
Tags: upstream-3.3.2
Import upstream version 3.3.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2002 by Roberto Raggi
 
3
 * roberto@kdevelop.org
 
4
 * Copyright (C) 2003 Oliver Kellogg
 
5
 * okellogg@users.sourceforge.net
 
6
 *
 
7
 * This program is free software; you can redistribute it and/or modify
 
8
 * it under the terms of the GNU General Public License as published by
 
9
 * the Free Software Foundation; either version 2 of the License, or
 
10
 * (at your option) any later version.
 
11
 */
 
12
 
 
13
#ifndef BACKGROUNDPARSER_H
 
14
#define BACKGROUNDPARSER_H
 
15
 
 
16
#include <qthread.h>
 
17
#include <qstring.h>
 
18
#include <kdebug.h>
 
19
 
 
20
class ProblemReporter;
 
21
 
 
22
class BackgroundParser: public QThread{
 
23
public:
 
24
    BackgroundParser( ProblemReporter* reporter,
 
25
                      const QString& source,
 
26
                      const QString& filename );
 
27
    virtual ~BackgroundParser();
 
28
 
 
29
    virtual void run();
 
30
 
 
31
private:
 
32
    ProblemReporter* m_reporter;
 
33
    QString m_source;
 
34
    QString m_fileName;
 
35
};
 
36
 
 
37
#endif