ROSE
0.11.145.147
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:11
Generated on Mon Sep 30 2024 03:25:27 for ROSE by
1.9.8