src
loc.h
Go to the documentation of this file.
1 #ifndef _RE2C_PARSE_LOC_
2 #define _RE2C_PARSE_LOC_
3 
4 #include <string>
5 
6 #include "src/util/c99_stdint.h"
7 
8 namespace re2c
9 {
10 
11 struct Loc
12 {
13  std::string filename;
14  uint32_t line;
15 
16  inline Loc (const std::string & f, uint32_t l)
17  : filename (f)
18  , line (l)
19  {}
20 };
21 
22 } // namespace re2c
23 
24 #endif // _RE2C_PARSE_LOC_
uint32_t line
Definition: loc.h:14
Loc(const std::string &f, uint32_t l)
Definition: loc.h:16
std::string filename
Definition: loc.h:13
Definition: loc.h:11
Definition: bitmap.cc:10