diff options
author | 2021-04-07 21:47:03 +0530 | |
---|---|---|
committer | 2021-04-07 21:47:03 +0530 | |
commit | 3808c7afabaf3217b2641083cc3a07e771848eaa (patch) | |
tree | 8b899b4595ce851a8a0369e55d2adad4352fa5fe /src/dictionaries.h | |
parent | a789bdfd3f9aa06f814f7f799056db35db4bedf9 (diff) | |
download | whatsie-3808c7afabaf3217b2641083cc3a07e771848eaa.tar.gz whatsie-3808c7afabaf3217b2641083cc3a07e771848eaa.zip |
added dictionary helper class
Diffstat (limited to 'src/dictionaries.h')
-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 |