OSDN Git Service

Automatically align underspecified tasks boundaries on project boundaries when possible.
[tjqt4port/tj2qt4.git] / taskjuggler / QtResourceReportElement.h
1 /*
2  * QtResourceReportElement.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 _QtResourceReportElement_h_
14 #define _QtResourceReportElement_h_
15
16 #include "QtReportElement.h"
17
18 class QtResourceReportElement : public QtReportElement
19 {
20 public:
21     QtResourceReportElement(Report* r, const QString& df, int dl);
22     ~QtResourceReportElement();
23
24     bool generate() { return false; }
25 } ;
26
27 #endif
28