add more spacing
[personal-kdebase.git] / workspace / kcontrol / kfontinst / apps / Installer.h
blob29237e58f6f50cb49d0d32ce16ff6de56a94db92
1 #ifndef __INSTALLER_H__
2 #define __INSTALLER_H__
4 /*
5 * KFontInst - KDE Font Installer
7 * Copyright 2003-2007 Craig Drummond <craig@kde.org>
9 * ----
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.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; see the file COPYING. If not, write to
23 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24 * Boston, MA 02110-1301, USA.
27 #include <QtCore/QSet>
28 #include <KDE/KUrl>
30 class QWidget;
31 class KTempDir;
33 namespace KFI
35 class CInstaller
37 public:
39 CInstaller(QWidget *p)
40 : itsParent(p), itsTempDir(NULL) { }
41 ~CInstaller();
43 int install(const QSet<KUrl> &urls);
45 private:
47 QWidget *itsParent;
48 KTempDir *itsTempDir;
53 #endif