diff options
Diffstat (limited to 'dw/hyphenator.hh')
-rw-r--r-- | dw/hyphenator.hh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/dw/hyphenator.hh b/dw/hyphenator.hh index 839f6cc9..aa60ce86 100644 --- a/dw/hyphenator.hh +++ b/dw/hyphenator.hh @@ -26,6 +26,9 @@ private: <lout::object::Integer> > *tree; void insertPattern (char *s); + lout::container::typed::Vector <lout::object::String> + *_hyphenateWord(const char *word); + public: Hyphenator (core::Platform *platform, const char *filename); ~Hyphenator(); @@ -34,8 +37,7 @@ public: const char *language); static bool isHyphenationCandidate (const char *word); - lout::container::typed::Vector <lout::object::String> - *hyphenateWord(const char *word); + int *hyphenateWord(const char *word, int *numBreaks); }; } // namespace dw |