Update of /cvsroot/cpptool/rfta/include/rfta/refactoring
In directory sc8-pr-cvs1:/tmp/cvs-serv12642/include/rfta/refactoring
Modified Files:
CodeModelStatements.h
Log Message:
* added tests for ReturnStatement.
Index: CodeModelStatements.h
===================================================================
RCS file: /cvsroot/cpptool/rfta/include/rfta/refactoring/CodeModelStatements.h,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** CodeModelStatements.h 16 Mar 2003 15:33:09 -0000 1.11
--- CodeModelStatements.h 16 Mar 2003 15:43:09 -0000 1.12
***************
*** 280,287 ****
--- 280,290 ----
public:
ReturnStatement();
+
ReturnStatement( const ExpressionPtr &value );
bool hasValue() const;
+
ExpressionPtr getValue() const;
+
void setValue( const ExpressionPtr &value );
|