~michael-sheldon/+junk/keyboard-skeyer-autocorrect

« back to all changes in this revision

Viewing changes to plugins/it/src/italianplugin.h

  • Committer: Thomas Moenicke
  • Date: 2013-11-28 14:40:54 UTC
  • mto: This revision was merged to the branch mainline in revision 121.
  • Revision ID: thomas.moenicke@canonical.com-20131128144054-0lu0iej0ygrbvr0i
added fr, de, es, en, it lang packs
added internal library for sharing code between presage/hunspell based packages
fixes in buildsystem
fixed path for installing plugins

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef ITALIANPLUGIN_H
 
2
#define ITALIANPLUGIN_H
 
3
 
 
4
#include <QObject>
 
5
#include "languageplugininterface.h"
 
6
#include "westernlanguagesplugin.h"
 
7
 
 
8
class ItalianPlugin : public QObject, public WesternLanguagesPlugin
 
9
{
 
10
    Q_OBJECT
 
11
    Q_INTERFACES(LanguagePluginInterface)
 
12
    Q_PLUGIN_METADATA(IID "org.qt-project.Qt.Examples.ItalianPlugin" FILE "italianplugin.json")
 
13
 
 
14
public:
 
15
    explicit ItalianPlugin(QObject* parent = 0)
 
16
        : QObject(parent)
 
17
        , WesternLanguagesPlugin()
 
18
    {
 
19
    }
 
20
 
 
21
    virtual ~ItalianPlugin()
 
22
    {
 
23
    }
 
24
};
 
25
 
 
26
#endif // ITALIANPLUGIN_H