summaryrefslogtreecommitdiffstats
path: root/tdeparts/tests/plugin_spellcheck.h
blob: d27966c0c932117531c86fc13b0b17d50ec14e8d (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 <tdeparts/plugin.h>

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

public slots:
    void slotSpellCheck();
};

#endif