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

Side by Side Diff: third_party/hunspell_new/src/parsers/latexparser.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 /*
2 * parser classes for MySpell
3 *
4 * implemented: text, HTML, TeX
5 *
6 * Copyright (C) 2002, Laszlo Nemeth
7 *
8 */
9
10 #ifndef _LATEXPARSER_HXX_
11 #define _LATEXPARSER_HXX_
12
13
14 #include "textparser.hxx"
15
16 /*
17 * HTML Parser
18 *
19 */
20
21 class LaTeXParser : public TextParser
22 {
23 int pattern_num; // number of comment
24 int depth; // depth of blocks
25 int arg; // arguments's number
26 int opt; // optional argument attrib.
27
28 public:
29
30 LaTeXParser(const char * wc);
31 LaTeXParser(unsigned short * wordchars, int len);
32 virtual ~LaTeXParser();
33
34 virtual char * next_token();
35
36 private:
37
38 int look_pattern(int col);
39
40 };
41
42
43 #endif
44
OLDNEW
« no previous file with comments | « third_party/hunspell_new/src/parsers/htmlparser.cxx ('k') | third_party/hunspell_new/src/parsers/latexparser.cxx » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698