public
Description: BasKet Note Pads - an system for organizing information in KDE.
Homepage: http://basket.kde.org
Clone URL: git://github.com/kelvie/basket.git
Matt Rogers (author)
Thu Jun 25 19:37:30 -0700 2009
commit  f5bc0f8a121ed1c095ecc44065a58a0469357b62
tree    30bcaae0770bd270df3c7fa89af8614f693a96e5
parent  54e17861444c1ef15b06e45cc511ef9e71c10620
basket / src / aboutdata.h
100644 37 lines (32 sloc) 1.706 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/***************************************************************************
* Copyright (C) 2003 by Sébastien Laoût *
* slaout@linux62.org *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#ifndef ABOUTDATA_H
#define ABOUTDATA_H
 
#include <kaboutdata.h>
#include <basket_export.h>
 
/**
@author Sébastien Laoût <slaout@linux62.org>
*/
 
class BASKET_EXPORT AboutData : public KAboutData
{
public:
    AboutData();
};
 
#endif