Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
654 B

  1. #ifndef _FRENCH_TOKENIZER_H_
  2. #define _FRENCH_TOKENIZER_H_
  3. #include "tokenizer.h"
  4. class CFrenchTokenizer : public CTokenizer
  5. {
  6. public:
  7. CFrenchTokenizer(
  8. TEXT_SOURCE* pTxtSource,
  9. IWordSink * pWordSink,
  10. IPhraseSink * pPhraseSink,
  11. LCID lcid,
  12. BOOL bQueryTime,
  13. ULONG ulMaxTokenSize) :
  14. CTokenizer(pTxtSource, pWordSink, pPhraseSink, lcid, bQueryTime, ulMaxTokenSize)
  15. {
  16. }
  17. virtual ~CFrenchTokenizer()
  18. {
  19. }
  20. protected:
  21. virtual void OutputHyphenation(
  22. CTokenState& State,
  23. const CCliticsTerm* pCliticsTerm);
  24. };
  25. #endif // _FRENCH_TOKENIZER_H_