| OLD | NEW |
| 1 // Copyright 2008 Google Inc. All Rights Reserved. | 1 // Copyright 2008 Google Inc. All Rights Reserved. |
| 2 | 2 |
| 3 #ifndef CHROME_THIRD_PARTY_HUNSPELL_GOOGLE_DIC_READER_H__ | 3 #ifndef CHROME_THIRD_PARTY_HUNSPELL_GOOGLE_DIC_READER_H__ |
| 4 #define CHROME_THIRD_PARTY_HUNSPELL_GOOGLE_DIC_READER_H__ | 4 #define CHROME_THIRD_PARTY_HUNSPELL_GOOGLE_DIC_READER_H__ |
| 5 | 5 |
| 6 #include <string> | 6 #include <string> |
| 7 #include <vector> | 7 #include <vector> |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "chrome/third_party/hunspell/google/bdict.h" | 10 #include "third_party/hunspell/google/bdict.h" |
| 11 | 11 |
| 12 namespace hunspell { | 12 namespace hunspell { |
| 13 | 13 |
| 14 class BDictReader; | 14 class BDictReader; |
| 15 class NodeReader; | 15 class NodeReader; |
| 16 | 16 |
| 17 // Iterators ------------------------------------------------------------------- | 17 // Iterators ------------------------------------------------------------------- |
| 18 | 18 |
| 19 // Iterates through all words in the dictionary. It will fill the word into | 19 // Iterates through all words in the dictionary. It will fill the word into |
| 20 // a caller-specified buffer. | 20 // a caller-specified buffer. |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 const BDict::Header* header_; | 142 const BDict::Header* header_; |
| 143 | 143 |
| 144 const BDict::AffHeader* aff_header_; | 144 const BDict::AffHeader* aff_header_; |
| 145 | 145 |
| 146 DISALLOW_EVIL_CONSTRUCTORS(BDictReader); | 146 DISALLOW_EVIL_CONSTRUCTORS(BDictReader); |
| 147 }; | 147 }; |
| 148 | 148 |
| 149 } // namespace hunspell | 149 } // namespace hunspell |
| 150 | 150 |
| 151 #endif // CHROME_THIRD_PARTY_HUNSPELL_GOOGLE_DIC_READER_H__ | 151 #endif // CHROME_THIRD_PARTY_HUNSPELL_GOOGLE_DIC_READER_H__ |
| OLD | NEW |