diff options
Diffstat (limited to 'quackleio/dict.h')
-rw-r--r-- | quackleio/dict.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/quackleio/dict.h b/quackleio/dict.h index 4935e4b..49b9286 100644 --- a/quackleio/dict.h +++ b/quackleio/dict.h @@ -55,6 +55,10 @@ private: ExtensionList getExtensionList(bool front) const; }; +// Returns true if word1 is less playable than word2; +// otherwise returns false. +bool operator<(const Dict::Word &word1, const Dict::Word &word2); + class WordList : public QList<Word> { public: @@ -84,8 +88,4 @@ public: } -// Returns true if word1 is less playable than word2; -// otherwise returns false. -bool operator<(const Dict::Word &word1, const Dict::Word &word2); - #endif |