Changeset 81 in dev for ProjectEditor/CClassInfo.cpp
- Timestamp:
- Mar 26, 2007, 7:33:18 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
ProjectEditor/CClassInfo.cpp
r3 r81 84 84 } 85 85 86 // Static/Constを飛ばす 87 if( memicmp(pBuf+i,"Static",6)==0 ){ 88 // Static 89 i+=6; 90 while(pBuf[i]==' '||pBuf[i]=='\t') i++; 91 } 92 if(pBuf[i]=='c'||pBuf[i]=='C'){ 93 // Const 94 i+=5; 95 while(pBuf[i]==' '||pBuf[i]=='\t') i++; 96 } 97 86 98 DWORD dwProc; 87 99 if(memicmp(pBuf+i,"Abstract",8)==0&&(pBuf[i+8]==' '||pBuf[i+8]=='\t')|| … … 91 103 memicmp(pBuf+i,"Sub",3)==0&&(pBuf[i+3]==' '||pBuf[i+3]=='\t')){ 92 104 //メンバ関数のとき 105 93 106 if(pBuf[i]=='a'||pBuf[i]=='A'){ 94 107 i+=9;
Note:
See TracChangeset
for help on using the changeset viewer.