~sil2100/unity-2d/precise-security

« back to all changes in this revision

Viewing changes to places/QtDee/plugin.h

  • Committer: Aurelien Gateau
  • Date: 2010-11-10 08:57:29 UTC
  • mto: This revision was merged to the branch mainline in revision 284.
  • Revision ID: aurelien.gateau@canonical.com-20101110085729-fl1ye7impkqhm0w6
Added a section about const correct-ness

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2010 Canonical, Ltd.
 
3
 *
 
4
 * Authors:
 
5
 *  Florian Boucault <florian.boucault@canonical.com>
 
6
 *
 
7
 * This program is free software; you can redistribute it and/or modify
 
8
 * it under the terms of the GNU General Public License as published by
 
9
 * the Free Software Foundation; version 3.
 
10
 *
 
11
 * This program 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
#ifndef QTDEEPLUGIN_H
 
21
#define QTDEEPLUGIN_H
 
22
 
 
23
#include <QtDeclarative/QDeclarativeExtensionPlugin>
 
24
 
 
25
class QtDeePlugin : public QDeclarativeExtensionPlugin
 
26
{
 
27
    Q_OBJECT
 
28
public:
 
29
    void registerTypes(const char *uri);
 
30
    void initializeEngine(QDeclarativeEngine *engine, const char *uri);
 
31
};
 
32
 
 
33
 
 
34
#endif // QTDEEPLUGIN_H