OSDN Git Service

adjust integer's signedness
[tjqt4port/tj2qt4.git] / taskjuggler / CSVTaskReportElement.h
1 /*
2  * CSVTaskReportElement.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 _CSVTaskReportElement_h_
14 #define _CSVTaskReportElement_h_
15
16 #include "CSVReportElement.h"
17
18 class CSVTaskReportElement : public CSVReportElement
19 {
20 public:
21     CSVTaskReportElement(Report* r, const QString& df, int dl);
22     ~CSVTaskReportElement() { };
23
24     bool generate();
25 } ;
26
27 #endif
28