From: <net...@us...> - 2003-09-15 09:21:54
|
Update of /cvsroot/cpptool/rfta/src/rfta In directory sc8-pr-cvs1:/tmp/cvs-serv7031/rfta Modified Files: IdentifierResolverStrategy.h Log Message: -- changed interface for variable declaration Index: IdentifierResolverStrategy.h =================================================================== RCS file: /cvsroot/cpptool/rfta/src/rfta/IdentifierResolverStrategy.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** IdentifierResolverStrategy.h 6 Sep 2003 21:51:22 -0000 1.3 --- IdentifierResolverStrategy.h 15 Sep 2003 09:21:40 -0000 1.4 *************** *** 8,11 **** --- 8,12 ---- #include <rfta/refactoring/Config.h> #include <rfta/parser/ASTNode.h> + #include "IdentifierAttributes.h" namespace Refactoring *************** *** 29,33 **** virtual void removeScopeLookup(std::string name) =0; ! virtual void declareLocalVariable( const ASTNodePtr &localVariableDeclNode ) =0; // store composed type 'class' and 'struct' --- 30,35 ---- virtual void removeScopeLookup(std::string name) =0; ! //virtual void declareLocalVariable( const ASTNodePtr &localVariableDeclNode ) =0; ! virtual void declareIdentifier( const ASTNodePtr &identifierDeclNode, const IdentifierAttributes::type attr ) = 0; // store composed type 'class' and 'struct' |