src
Main Page
Namespaces
Classes
Files
File List
File Members
parse
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_
re2c::Loc::line
uint32_t line
Definition:
loc.h:14
re2c::Loc::Loc
Loc(const std::string &f, uint32_t l)
Definition:
loc.h:16
re2c::Loc::filename
std::string filename
Definition:
loc.h:13
re2c::Loc
Definition:
loc.h:11
c99_stdint.h
re2c
Definition:
bitmap.cc:10
Generated by
1.8.10