~neon/kactivities/master

« back to all changes in this revision

Viewing changes to src/imports/activitiesextensionplugin.h

  • Committer: Ivan Čukić
  • Date: 2013-12-04 15:50:33 UTC
  • mto: (381.1.76)
  • mto: This revision was merged to the branch mainline in revision 388.
  • Revision ID: git-v1:4eda380bbdf451b71ea96b1b81b61c1b8d588b4a
Activities model for QML

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *   Copyright (C) 2011, 2012 by Ivan Cukic <ivan.cukic(at)kde.org>
 
3
 *
 
4
 *   This program is free software; you can redistribute it and/or modify
 
5
 *   it under the terms of the GNU Library General Public License as
 
6
 *   published by the Free Software Foundation; either version 2, or
 
7
 *   (at your option) any later version.
 
8
 *
 
9
 *   This program 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 General Public License for more details
 
13
 *
 
14
 *   You should have received a copy of the GNU Library General Public
 
15
 *   License along with this program; if not, write to the
 
16
 *   Free Software Foundation, Inc.,
 
17
 *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 
18
 */
 
19
 
 
20
#ifndef ACTIVITIES_COMPONENT_PLUGIN_H
 
21
#define ACTIVITIES_COMPONENT_PLUGIN_H
 
22
 
 
23
#include <QQmlExtensionPlugin>
 
24
 
 
25
class ActivitiesExtensionPlugin : public QQmlExtensionPlugin {
 
26
    Q_OBJECT
 
27
    Q_PLUGIN_METADATA(IID "org.kde.activities")
 
28
 
 
29
public:
 
30
    ActivitiesExtensionPlugin(QObject *parent = Q_NULLPTR);
 
31
    void registerTypes(const char *uri) Q_DECL_OVERRIDE;
 
32
};
 
33
 
 
34
#endif // ACTIVITIES_COMPONENT_DATA_PLUGIN_H