fixed paths

This commit is contained in:
2025-03-12 14:22:11 +03:00
parent a4c8785e66
commit 18f561925b
774 changed files with 4558 additions and 4558 deletions

View File

@@ -0,0 +1,31 @@
#pragma once
///////////////////////////////////////////////////////////////////
// interface to the annotations
///////////////////////////////////////////////////////////////////
class SgAnnotation
{
public:
// the id of the annotation;
int id;
// the annotation itself;
SgExpression *theannotation;
//the statement it is attached on;
SgStatement *stmt;
SgStatement *scopebegin;
SgStatement *scopeend;
int defined;
SgExpression *thedirective;
char *directiveName;
// pointer to the next annotation for a statement;
SgAnnotation *next;
SgAnnotation(int id);
~SgAnnotation();
char * unparse();
int applyToStatement(SgStatement *stat);
SgExpression **directiveFields;
int nbDirectiveFields;
};