Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(264)

Side by Side Diff: third_party/hunspell_new/src/hunspell/replist.hxx

Issue 1135173004: Rename third_party/hunspell_new back to third_party/hunspell. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 /* string replacement list class */
2 #ifndef _REPLIST_HXX_
3 #define _REPLIST_HXX_
4
5 #ifdef HUNSPELL_CHROME_CLIENT
6 // Compilation issues in spellchecker.cc think near is a macro, therefore
7 // removing it here solves that problem.
8 #undef near
9 #endif
10
11 #include "hunvisapi.h"
12
13 #include "w_char.hxx"
14
15 class LIBHUNSPELL_DLL_EXPORTED RepList
16 {
17 protected:
18 replentry ** dat;
19 int size;
20 int pos;
21
22 public:
23 RepList(int n);
24 ~RepList();
25
26 int get_pos();
27 int add(char * pat1, char * pat2);
28 replentry * item(int n);
29 int near(const char * word);
30 int match(const char * word, int n);
31 int conv(const char * word, char * dest);
32 };
33 #endif
OLDNEW
« no previous file with comments | « third_party/hunspell_new/src/hunspell/phonet.cxx ('k') | third_party/hunspell_new/src/hunspell/replist.cxx » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698