1 /***************************************************************************
2                           tocitemgroup.h  -  description
3                              -------------------
4     begin                : Sat Jul 03 2010
5     copyright            : (C) Bernd Gonsior
6     email                : bernd.gonsior@googlemail.com
7  ***************************************************************************/
8 
9 /***************************************************************************
10  *                                                                         *
11  *   This program is free software; you can redistribute it and/or modify  *
12  *   it under the terms of the GNU General Public License as published by  *
13  *   the Free Software Foundation; either version 2 of the License, or     *
14  *   (at your option) any later version.                                   *
15  *                                                                         *
16  ***************************************************************************/
17 #ifndef TOCITEMGROUP_H
18 #define TOCITEMGROUP_H
19 
20 // ----------------------------------------------------------------------------
21 // QT Includes
22 
23 
24 // ----------------------------------------------------------------------------
25 // KDE Includes
26 
27 
28 // ----------------------------------------------------------------------------
29 // Project Includes
30 
31 #include "tocitem.h"
32 
33 /**
34  * Class for reportgroup items in reports table of contents (TOC).
35  */
36 class TocItemGroup : public TocItem
37 {
38 public:
39 
40   /** Constructor.
41    *
42    * @param parent pointer to the parent QWidget
43    * @param groupNo group number
44    * @param title group title in i18n-form
45    */
46   TocItemGroup(QTreeWidget* parent, int groupNo, QString title);
47 };
48 
49 #endif
50