src
way.h
Go to the documentation of this file.
1 #ifndef _RE2C_IR_SKELETON_WAY_
2 #define _RE2C_IR_SKELETON_WAY_
3 
4 #include "src/util/c99_stdint.h"
5 #include <stdio.h>
6 #include <utility>
7 #include <vector>
8 
9 namespace re2c
10 {
11 
12 typedef std::vector<std::pair<uint32_t, uint32_t> > way_arc_t;
13 typedef std::vector<const way_arc_t *> way_t;
14 
15 bool cmp_ways (const way_t & w1, const way_t & w2);
16 void fprint_way (FILE * f, const way_t & p);
17 
18 } // namespace re2c
19 
20 #endif // _RE2C_IR_SKELETON_WAY_
std::vector< const way_arc_t * > way_t
Definition: way.h:13
void fprint_way(FILE *f, const way_t &w)
Definition: way.cc:28
Definition: bitmap.cc:10
std::vector< std::pair< uint32_t, uint32_t > > way_arc_t
Definition: way.h:12
bool cmp_ways(const way_t &w1, const way_t &w2)
Definition: way.cc:20