Changeset 171 in dev for trunk/jenga/src
- Timestamp:
- Jun 19, 2007, 1:58:06 AM (17 years ago)
- Location:
- trunk/jenga/src/smoothie
- Files:
-
- 1 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/jenga/src/smoothie/Prototype.cpp
r170 r171 1 #include <jenga/include/smoothie/Prototype.h>2 #include <jenga/include/smoothie/Member.h>3 1 #include <jenga/include/smoothie/BasicFixed.h> 2 #include <jenga/include/smoothie/Class.h> 4 3 5 4 bool Prototype::IsEqualSymbol( const NamespaceScopes &namespaceScopes, const string &name ) const … … 19 18 char AreaName[VN_SIZE] = ""; //オブジェクト変数 20 19 char NestName[VN_SIZE] = ""; //入れ子メンバ 21 bool isNest = C Member::SplitName( fullName.c_str(), AreaName, NestName );20 bool isNest = CClass::SplitName( fullName.c_str(), AreaName, NestName ); 22 21 23 22 return IsEqualSymbol( NamespaceScopes( AreaName ), NestName ); -
trunk/jenga/src/smoothie/Symbol.cpp
r170 r171 1 1 #include <jenga/include/smoothie/BasicFixed.h> 2 2 #include <jenga/include/smoothie/Symbol.h> 3 #include <jenga/include/smoothie/ Member.h>3 #include <jenga/include/smoothie/Class.h> 4 4 5 5 Symbol::Symbol( const char *fullName ) … … 7 7 char areaName[VN_SIZE] = ""; //オブジェクト変数 8 8 char nestName[VN_SIZE] = ""; //入れ子メンバ 9 bool isNest = C Member::SplitName( fullName, areaName, nestName );9 bool isNest = CClass::SplitName( fullName, areaName, nestName ); 10 10 11 11 namespaceScopes = NamespaceScopes( areaName ); … … 16 16 char areaName[VN_SIZE] = ""; //オブジェクト変数 17 17 char nestName[VN_SIZE] = ""; //入れ子メンバ 18 bool isNest = C Member::SplitName( fullName.c_str(), areaName, nestName );18 bool isNest = CClass::SplitName( fullName.c_str(), areaName, nestName ); 19 19 20 20 namespaceScopes = NamespaceScopes( areaName );
Note:
See TracChangeset
for help on using the changeset viewer.