~dpm/reminders-app/evernote-api-plugin

« back to all changes in this revision

Viewing changes to src/plugin/Evernote/evernoteplugin.h

  • Committer: Michael Zanetti
  • Date: 2013-11-14 20:19:11 UTC
  • Revision ID: michael.zanetti@canonical.com-20131114201911-pc2rlni3akrqxlgn
first try to connect to evernote

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*****************************************************************************
 
2
 * Copyright: 2013 Michael Zanetti <michael_zanetti@gmx.net>                 *
 
3
 *                                                                           *
 
4
 * This file is part of ubuntu-fitbit-app                                    *
 
5
 *                                                                           *
 
6
 * ubuntu-fitbit-app is free software: you can redistribute it and/or modify *
 
7
 * it under the terms of the GNU General Public License as published by      *
 
8
 * the Free Software Foundation, either version 3 of the License, or         *
 
9
 * (at your option) any later version.                                       *
 
10
 *                                                                           *
 
11
 * ubuntu-fitbit-app is distributed in the hope that it will be useful,      *
 
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of            *
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the             *
 
14
 * GNU General Public License for more details.                              *
 
15
 *                                                                           *
 
16
 * You should have received a copy of the GNU General Public License         *
 
17
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.     *
 
18
 *                                                                           *
 
19
 ****************************************************************************/
 
20
 
 
21
#ifndef FITBITPLUGIN_H
 
22
#define FITBITPLUGIN_H
 
23
 
 
24
#include <QQmlExtensionPlugin>
 
25
 
 
26
class FitBitPlugin : public QQmlExtensionPlugin
 
27
{
 
28
    Q_OBJECT
 
29
    Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QQmlExtensionInterface")
 
30
public:    
 
31
    void registerTypes(const char *uri);
 
32
};
 
33
 
 
34
#endif // FITBITPLUGIN_H