summaryrefslogtreecommitdiffstats
path: root/kparts/tests/plugin_spellcheck.h
blob: 31d6b5380e2da55013e456dce2d5ea75f2770101 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef __plugin_spellcheck_h
#define __plugin_spellcheck_h

#include <kparts/plugin.h>

class PluginSpellCheck : public KParts::Plugin
{
    Q_OBJECT
public:
    PluginSpellCheck( QObject* parent = 0, const char* name = 0, 
                      const QStringList& = QStringList() );
    virtual ~PluginSpellCheck();

public slots:
    void slotSpellCheck();
};

#endif