OSDN Git Service

fix compile problem
[tjqt4port/tj2qt4.git] / taskjuggler / HTMLAccountReport.h
1 /*
2  * HTMLAccountReport.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 _HTMLAccountReport_h_
14 #define _HTMLAccountReport_h_
15
16 #include "HTMLSingleReport.h"
17 #include "HTMLAccountReportElement.h"
18 #include "tjlib-internal.h"
19
20 /**
21  * @short Stores all information about an HTML account report.
22  * @author Chris Schlaeger <cs@kde.org>
23  */
24 class HTMLAccountReport : public HTMLSingleReport
25 {
26 public:
27     HTMLAccountReport(Project* p, const QString& f, const QString& df, int dl) :
28         HTMLSingleReport(p, f, df, dl)
29     {
30         setTable(new HTMLAccountReportElement(this, df, dl));
31     }
32
33     virtual ~HTMLAccountReport()
34     { }
35
36     virtual const char* getType() const { return "HTMLAccountReport"; }
37     virtual QString getTitle() const { return i18n("Account Report"); }
38 };
39
40 #endif