OSDN Git Service

adjust integer's signedness
[tjqt4port/tj2qt4.git] / taskjuggler / SVGReport.h
1 /*
2  * SVGReport.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 _SVGReport_h_
14 #define _SVGReport_h_
15
16 #include "Report.h"
17
18 /**
19  * @short Stores all information about an SVG report.
20  */
21 class SVGReport : public Report
22 {
23 public:
24     SVGReport(Project* p, const QString& f, const QString& df, int dl);
25
26     virtual ~SVGReport()
27     { }
28
29     void setCaption(const QString& s) { caption = s; }
30     const QString& getCaption() const { return caption; }
31
32     virtual void inheritValues();
33 protected:
34
35
36 private:
37     QString caption;
38 };
39
40 #endif