~ubuntu-branches/ubuntu/quantal/kde-runtime/quantal

« back to all changes in this revision

Viewing changes to nepomuk/common/fileexcludefilters.h

  • Committer: Package Import Robot
  • Author(s): Philip Muškovac
  • Date: 2012-06-03 21:50:00 UTC
  • mto: This revision was merged to the branch mainline in revision 21.
  • Revision ID: package-import@ubuntu.com-20120603215000-vn7oarsq0ynrydj5
Tags: upstream-4.8.80
Import upstream version 4.8.80

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* This file is part of the KDE Project
2
 
   Copyright (c) 2008-2010 Sebastian Trueg <trueg@kde.org>
3
 
 
4
 
   This library is free software; you can redistribute it and/or
5
 
   modify it under the terms of the GNU Library General Public
6
 
   License version 2 as published by the Free Software Foundation.
7
 
 
8
 
   This library 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
 
   Library General Public License for more details.
12
 
 
13
 
   You should have received a copy of the GNU Library General Public License
14
 
   along with this library; see the file COPYING.LIB.  If not, write to
15
 
   the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
16
 
   Boston, MA 02110-1301, USA.
17
 
*/
18
 
 
19
 
#ifndef _FILE_EXCLUDE_FILTERS_H_
20
 
#define _FILE_EXCLUDE_FILTERS_H_
21
 
 
22
 
#include <QtCore/QStringList>
23
 
 
24
 
#include "nepomukcommon_export.h"
25
 
 
26
 
namespace Nepomuk {
27
 
    /**
28
 
     * \return A list of default exclude filters to be used
29
 
     * in the filewatch service to ignore temporary files
30
 
     * and folders that change a lot and as a basis for the
31
 
     * user configurable exclude filters in the strigi service.
32
 
     */
33
 
    NEPOMUKCOMMON_EXPORT QStringList defaultExcludeFilterList();
34
 
 
35
 
    /**
36
 
     * \return The version of the default exclude filter list.
37
 
     * This is increased whenever the list changes.
38
 
     */
39
 
    NEPOMUKCOMMON_EXPORT int defaultExcludeFilterListVersion();
40
 
}
41
 
 
42
 
#endif