ROSE
0.11.96.11
rexompiler
src
midend
abstractHandle
myloop.h
1
/*
2
* A toy loop data structure demonstrating a thin client of abstract handles:
3
* A simplest loop tool which keeps a tree of loops in a file
4
*/
5
#ifndef my_loop_INCLUDED
6
#define my_loop_INCLUDED
7
8
#include <string>
9
#include <vector>
10
class
MyLoop
11
{
12
public
:
13
std::string sourceFileName;
14
size_t
line_number;
15
std::vector<MyLoop*> children;
16
MyLoop
* parent;
17
};
18
19
#endif
MyLoop
Definition:
myloop.h:10
Generated on Mon Dec 19 2022 23:39:54 for ROSE by
1.8.17