ROSE  0.9.6a
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
GlobalIndexing.h
Go to the documentation of this file.
1 #ifndef GLOBALINDEX_IS_DEFINED
2 #define GLOBALINDEX_IS_DEFINED
3 
4 
5 
10 class GlobalIndex : public AstAttribute{
11 
12  public:
14  void setAttribute(int i){global_index = i;}
15 
16  private:
18 };
19 #endif
20 
21 #ifndef PRAGMAINSERT_IS_DEFINED
22 #define PRAGMAINSERT_IS_DEFINED
23 
24 
25 
33  public:
34  list<SgNode*> get_list_of_statements(){return list_of_statements;}
36  protected:
37  void virtual visit(SgNode* node);
38 
39  private:
40  list<SgNode*> list_of_statements;
42 };
43 #endif
44