~user-none/lebookread/trunk

« back to all changes in this revision

Viewing changes to src/fileutils.h

  • Committer: John Schember
  • Date: 2010-05-13 01:15:59 UTC
  • Revision ID: john@nachtimwald.com-20100513011559-8nlq8kjv9r93ele4
initial commit.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright 2010 John Schember <john@nachtimwald.com>
 
3
 *
 
4
 * This library is free software: you can redistribute it and/or modify
 
5
 * it under the terms of the GNU Lesser General Public License as published by
 
6
 * the Free Software Foundation, either version 3 of the License, or
 
7
 * (at your option) any later version.
 
8
 *
 
9
 * This library is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
 * GNU Lesser General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU Lesser General Public License
 
15
 * along with this library.  If not, see <http://www.gnu.org/licenses/>.
 
16
 */
 
17
 
 
18
#ifndef FILEUTILS_H
 
19
#define FILEUTILS_H
 
20
 
 
21
#include <QDir>
 
22
#include <QString>
 
23
 
 
24
class FileUtils
 
25
{
 
26
public:
 
27
    static bool removeDir(const QString &dirName);
 
28
};
 
29
 
 
30
#endif // FILEUTILS_H