diff options
Diffstat (limited to '')
-rw-r--r-- | src/dictionaries.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/dictionaries.h b/src/dictionaries.h new file mode 100644 index 0000000..2ed7612 --- /dev/null +++ b/src/dictionaries.h @@ -0,0 +1,21 @@ +#ifndef DICTIONARIES_H +#define DICTIONARIES_H + +#include <QString> +#include <QStringList> +#include <QObject> + + +class Dictionaries : public QObject +{ + Q_OBJECT + +public: + Dictionaries(QObject* parent=0); + virtual ~Dictionaries(); +public slots: + QString GetDictionaryPath(); + QStringList GetDictionaries(); +}; + +#endif // DICTIONARIES_H |