forked from MoganLab/mogan
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinline_comment_parser.hpp
More file actions
33 lines (26 loc) · 1.13 KB
/
inline_comment_parser.hpp
File metadata and controls
33 lines (26 loc) · 1.13 KB
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
29
30
31
32
33
/******************************************************************************
* MODULE : inline_comment_parser.hpp
* DESCRIPTION: shared inline comment parsing routines
* COPYRIGHT : (C) 2019-2020 Darcy Shen
*******************************************************************************
* This software falls under the GNU general public license version 3 or later.
* It comes WITHOUT ANY WARRANTY WHATSOEVER. For details, see the file LICENSE
* in the root directory or <http://www.gnu.org/licenses/gpl-3.0.html>.
******************************************************************************/
#ifndef INLINE_COMMENT_PARSER_H
#define INLINE_COMMENT_PARSER_H
#include "array.hpp"
#include "parser.hpp"
class inline_comment_parser_rep : public parser_rep {
public:
inline_comment_parser_rep ();
string get_parser_name () { return "inline_comment_parser"; }
void set_starts (const array<string>& p_starts);
void set_require_space_before (bool require);
bool can_parse (string s, int pos);
private:
array<string> m_starts;
bool m_require_space_before;
void do_parse (string s, int& pos);
};
#endif