blob: ed04d8b89c725974917132e77857297efeb8833c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#ifndef _MATCHINGS_FINDER_H_
#define _MATCHINGS_FINDER_H_
#include <memory>
#include <string>
using namespace std;
class PhraseLocation;
class SuffixArray;
class MatchingsFinder {
public:
MatchingsFinder(shared_ptr<SuffixArray> suffix_array);
virtual ~MatchingsFinder();
virtual PhraseLocation Find(PhraseLocation& location, const string& word,
int offset);
protected:
MatchingsFinder();
private:
shared_ptr<SuffixArray> suffix_array;
};
#endif
|