OSDN Git Service

Replace uppercase bool constant with proper lower case names.
[tjqt4port/tj2qt4.git] / taskjuggler / QtResourceReport.h
1 /*
2  * QtResourceReport.h - TaskJuggler
3  *
4  * Copyright (c) 2001, 2002, 2003, 2004 by Chris Schlaeger <cs@kde.org>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of version 2 of the GNU General Public License as
8  * published by the Free Software Foundation.
9  *
10  * $Id$
11  */
12
13 #ifndef _QtResourceReport_h_
14 #define _QtResourceReport_h_
15
16 #include "QtReport.h"
17
18 class Project;
19 class QtResourceReportElement;
20
21 /**
22  * @short Stores all information about an Qt task report.
23  * @author Chris Schlaeger <cs@kde.org>
24  */
25 class QtResourceReport : public QtReport
26 {
27 public:
28     QtResourceReport(Project* p, const QString& f, const QString& df, int dl);
29     virtual ~QtResourceReport();
30
31     virtual const char* getType() const { return "QtResourceReport"; }
32
33     bool generate() { return false; }
34
35     QtResourceReportElement* getTable() const { return tab; }
36
37 private:
38     QtResourceReportElement* tab;
39 } ;
40
41 #endif