mirror of
https://github.com/daveallie/crosspoint-reader.git
synced 2026-02-06 15:47:39 +03:00
15 lines
362 B
C++
15 lines
362 B
C++
#pragma once
|
|
|
|
#include "LanguageHyphenator.h"
|
|
|
|
// Implements Liang hyphenation rules for French (Latin script).
|
|
class FrenchHyphenator final : public LanguageHyphenator {
|
|
public:
|
|
static const FrenchHyphenator& instance();
|
|
|
|
std::vector<size_t> breakIndexes(const std::vector<CodepointInfo>& cps) const override;
|
|
|
|
private:
|
|
FrenchHyphenator() = default;
|
|
};
|