summaryrefslogtreecommitdiff
path: root/libs/hunspell/src/replist.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'libs/hunspell/src/replist.hxx')
-rw-r--r--libs/hunspell/src/replist.hxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/libs/hunspell/src/replist.hxx b/libs/hunspell/src/replist.hxx
index 319eb03fb0..59366e9e02 100644
--- a/libs/hunspell/src/replist.hxx
+++ b/libs/hunspell/src/replist.hxx
@@ -79,6 +79,9 @@
#include "w_char.hxx"
+#include <string>
+#include <vector>
+
class LIBHUNSPELL_DLL_EXPORTED RepList {
private:
RepList(const RepList&);
@@ -100,5 +103,6 @@ class LIBHUNSPELL_DLL_EXPORTED RepList {
int near(const char* word);
int match(const char* word, int n);
int conv(const char* word, char* dest, size_t destsize);
+ bool conv(const char* word, std::string& dest);
};
#endif