OSDN Git Service

adjust integer's signedness
[tjqt4port/tj2qt4.git] / taskjuggler / ReportXML.h
1 /*
2  * Report.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 _Report_xml_h_
14 #define _Report_xml_h_
15
16 #include <qcolor.h>
17 #include <qdom.h>
18
19 #include "Report.h"
20
21 class Project;
22 class ExpressionTree;
23
24 class ReportXML : public Report
25 {
26 public:
27    ReportXML(Project* p, const QString& f, const QString& df, int dl);
28    virtual ~ReportXML() { }
29
30    bool generate();
31
32    static QDomElement createXMLElem( QDomDocument& doc, const QString& name,
33                      const QString& val );
34 } ;
35
36 #endif