source: dev/trunk/jenga/src/smoothie/Prototype.cpp@ 192

Last change on this file since 192 was 192, checked in by dai_9181, 17 years ago
File size: 554 bytes
Line 
1#include <jenga/include/smoothie/BasicFixed.h>
2#include <jenga/include/smoothie/Class.h>
3
4bool Prototype::IsEqualSymbol( const Prototype &prototype ) const
5{
6 return IsEqualSymbol( prototype.GetNamespaceScopes(), prototype.GetName() );
7}
8bool Prototype::IsEqualSymbol( const string &fullName ) const
9{
10 char AreaName[VN_SIZE] = ""; //オブジェクト変数
11 char NestName[VN_SIZE] = ""; //入れ子メンバ
12 bool isNest = CClass::SplitName( fullName.c_str(), AreaName, NestName );
13
14 return IsEqualSymbol( NamespaceScopes( AreaName ), NestName );
15}
Note: See TracBrowser for help on using the repository browser.