|
From: <net...@us...> - 2003-12-16 13:23:21
|
Update of /cvsroot/cpptool/rfta/src/rfta
In directory sc8-pr-cvs1:/tmp/cvs-serv24872/rfta/src/rfta
Modified Files:
IdentifierResolverContext.cpp IdentifierResolverContext.h
Log Message:
-- template for class resolving (empty for the moment because other things are more important now)
Index: IdentifierResolverContext.cpp
===================================================================
RCS file: /cvsroot/cpptool/rfta/src/rfta/IdentifierResolverContext.cpp,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** IdentifierResolverContext.cpp 15 Sep 2003 09:19:35 -0000 1.12
--- IdentifierResolverContext.cpp 16 Dec 2003 13:23:18 -0000 1.13
***************
*** 75,78 ****
--- 75,83 ----
}
+ void
+ IdentifierResolverContext::declareClass( const ASTNodePtr &specifierNode)
+ {
+ }
+
bool
Index: IdentifierResolverContext.h
===================================================================
RCS file: /cvsroot/cpptool/rfta/src/rfta/IdentifierResolverContext.h,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** IdentifierResolverContext.h 15 Sep 2003 09:19:35 -0000 1.8
--- IdentifierResolverContext.h 16 Dec 2003 13:23:18 -0000 1.9
***************
*** 59,62 ****
--- 59,64 ----
void resolveUnqualifiedIdentifier( const ASTNodePtr &identifierNode );
+ void declareClass( const ASTNodePtr &specifierNode);
+
void enterNamedSubScope(std::string name);
void leaveNamedSubScope();
|