Update of /cvsroot/cpptool/rfta/include/rfta/parser
In directory sc8-pr-cvs1:/tmp/cvs-serv12033/include/rfta/parser
Modified Files:
ASTNode.h SourceRange.h
Log Message:
* added setEndIndex()
Index: ASTNode.h
===================================================================
RCS file: /cvsroot/cpptool/rfta/include/rfta/parser/ASTNode.h,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** ASTNode.h 25 Dec 2002 22:39:03 -0000 1.15
--- ASTNode.h 1 May 2003 20:48:04 -0000 1.16
***************
*** 56,59 ****
--- 56,61 ----
void setLength( int length );
+ void setEndIndex( int index );
+
const SourceRange &getRange() const;
Index: SourceRange.h
===================================================================
RCS file: /cvsroot/cpptool/rfta/include/rfta/parser/SourceRange.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** SourceRange.h 22 Dec 2002 16:03:50 -0000 1.1
--- SourceRange.h 1 May 2003 20:48:04 -0000 1.2
***************
*** 34,37 ****
--- 34,39 ----
void setLength( int length );
+ void setEndIndex( int index );
+
bool isEmpty() const;
|