summaryrefslogtreecommitdiffstats
path: root/tdeparts/tests/plugin_spellcheck.h
diff options
context:
space:
mode:
Diffstat (limited to 'tdeparts/tests/plugin_spellcheck.h')
-rw-r--r--tdeparts/tests/plugin_spellcheck.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/tdeparts/tests/plugin_spellcheck.h b/tdeparts/tests/plugin_spellcheck.h
new file mode 100644
index 000000000..d27966c0c
--- /dev/null
+++ b/tdeparts/tests/plugin_spellcheck.h
@@ -0,0 +1,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