LeviLamina
Loading...
Searching...
No Matches
IBreakIterator.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace cohtml::i18n {
6
7class IBreakIterator {
8public:
9 // virtual functions
10 // NOLINTBEGIN
11 virtual ~IBreakIterator();
12
13 virtual void Destroy() = 0;
14
15 virtual void ClearText();
16
17 virtual int GetCurrentPosition();
18
19 virtual int MoveToCandidateAfter(int);
20
21 virtual int MoveToCandidateBefore(int index) = 0;
22
23 virtual int MoveToNext();
24
25 virtual int MoveToPrevious();
26
27 virtual int ResetToBeginning();
28
29 virtual int ResetToEnd();
30
31 virtual void SetText(char const*, uint);
32
33 virtual void SetTextRef(char const* utfBuffer) = 0;
34 // NOLINTEND
35
36public:
37 // destructor thunk
38 // NOLINTBEGIN
39 MCNAPI void $dtor();
40 // NOLINTEND
41
42public:
43 // virtual function thunks
44 // NOLINTBEGIN
45 MCNAPI void $ClearText();
46
47 MCNAPI int $GetCurrentPosition();
48
49 MCNAPI int $MoveToCandidateAfter(int);
50
51 MCNAPI int $MoveToNext();
52
53 MCNAPI int $MoveToPrevious();
54
55 MCNAPI int $ResetToBeginning();
56
57 MCNAPI int $ResetToEnd();
58
59 MCNAPI void $SetText(char const*, uint);
60 // NOLINTEND
61};
62
63} // namespace cohtml::i18n
Definition IBreakIterator.h:7
MCAPI void $SetText(char const *, uint)
MCAPI int $MoveToCandidateAfter(int)