Update of /cvsroot/cpptool/rfta/src/rfta
In directory sc8-pr-cvs1:/tmp/cvs-serv7348/rfta
Modified Files:
IdentifierScope.h
Log Message:
-- identifier attributes seperated
Index: IdentifierScope.h
===================================================================
RCS file: /cvsroot/cpptool/rfta/src/rfta/IdentifierScope.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** IdentifierScope.h 8 Sep 2003 19:12:07 -0000 1.4
--- IdentifierScope.h 15 Sep 2003 09:22:35 -0000 1.5
***************
*** 7,10 ****
--- 7,11 ----
#include <rfta/parser/SourceASTNode.h>
+ #include "IdentifierAttributes.h"
namespace Refactoring
***************
*** 30,44 ****
private:
ExceptionType reason_;
- };
-
- class IdentifierAttributes {
- public:
- enum type {
- NoAttribute = 0,
- ClassIdentifier = 1,
- EnumIdentifier = 2,
- UnionIdentifier = 3,
- StructIdentifier = 4
- };
};
--- 31,34 ----
|