Krazy/EBN: changes for null strings
[kphotoalbum.git] / XMLDB / NumberedBackup.h
blobb13dce6082d95e8ba2d8a7ce485316e52df9675c
1 /* Copyright (C) 2003-2006 Jesper K. Pedersen <blackie@kde.org>
3 This program is free software; you can redistribute it and/or
4 modify it under the terms of the GNU General Public
5 License as published by the Free Software Foundation; either
6 version 2 of the License, or (at your option) any later version.
8 This program is distributed in the hope that it will be useful,
9 but WITHOUT ANY WARRANTY; without even the implied warranty of
10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 General Public License for more details.
13 You should have received a copy of the GNU General Public License
14 along with this program; see the file COPYING. If not, write to
15 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
16 Boston, MA 02110-1301, USA.
18 #ifndef NUMBEREDBACKUP_H
19 #define NUMBEREDBACKUP_H
20 #include <qstringlist.h>
22 namespace XMLDB {
23 class NumberedBackup
25 public:
26 void makeNumberedBackup();
27 protected:
28 int getMaxId() const;
29 QStringList backupFiles() const;
30 int idForFile( const QString& fileName, bool& OK ) const;
31 void deleteOldBackupFiles();
35 #endif /* NUMBEREDBACKUP_H */