~ubuntu-docviewer-dev/poppler-qml-plugin/trunk

« back to all changes in this revision

Viewing changes to plugin.h

  • Committer: Tarmac
  • Author(s): Robert Bruce Park
  • Date: 2013-08-19 16:40:55 UTC
  • mfrom: (10.1.2 more-packaging)
  • Revision ID: tarmac-20130819164055-ozybx9dy2mgogbri
Minor packaging fixups.

Approved by Robert Bruce Park, PS Jenkins bot.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2013 Canonical, Ltd.
 
3
 *
 
4
 * This program is free software: you can redistribute it and/or modify it
 
5
 * under the terms of the GNU General Public License version 3, as published
 
6
 * by the Free Software Foundation.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful, but
 
9
 * WITHOUT ANY WARRANTY; without even the implied warranties of
 
10
 * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
 
11
 * PURPOSE.  See the GNU General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU General Public License along
 
14
 * with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 *
 
16
 * Author: Anthony Granger <grangeranthony@gmail.com>
 
17
 */
 
18
 
1
19
#ifndef POPPLERPLUGIN_H
2
20
#define POPPLERPLUGIN_H
3
21
 
7
25
{
8
26
    Q_OBJECT
9
27
    Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QQmlExtensionInterface")
10
 
    
 
28
 
11
29
public:
12
30
    void registerTypes(const char *uri);
13
31
};
14
32
 
15
33
#endif // POPPLERPLUGIN_H
16