~ubuntu-branches/ubuntu/vivid/kfilemetadata-kf5/vivid-updates

« back to all changes in this revision

Viewing changes to src/extractor_p.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2014-10-01 15:44:16 UTC
  • mto: (2.1.1 vivid-proposed)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: package-import@ubuntu.com-20141001154416-2im4irvqp092mkj9
Tags: upstream-5.1.0.1
ImportĀ upstreamĀ versionĀ 5.1.0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * <one line to give the library's name and an idea of what it does.>
 
3
 * Copyright (C) 2014  Vishesh Handa <me@vhanda.in>
 
4
 *
 
5
 * This library is free software; you can redistribute it and/or
 
6
 * modify it under the terms of the GNU Lesser General Public
 
7
 * License as published by the Free Software Foundation; either
 
8
 * version 2.1 of the License, or (at your option) any later version.
 
9
 *
 
10
 * This library is distributed in the hope that it will be useful,
 
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
13
 * Lesser General Public License for more details.
 
14
 *
 
15
 * You should have received a copy of the GNU Lesser General Public
 
16
 * License along with this library; if not, write to the Free Software
 
17
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 
18
 *
 
19
 */
 
20
 
 
21
#ifndef KFILEMETADATA_EXTRACTOR_P_H
 
22
#define KFILEMETADATA_EXTRACTOR_P_H
 
23
 
 
24
namespace KFileMetaData {
 
25
 
 
26
class ExtractorPlugin;
 
27
 
 
28
class ExtractorPrivate
 
29
{
 
30
public:
 
31
    ExtractorPlugin *m_plugin;
 
32
};
 
33
 
 
34
}
 
35
 
 
36
#endif