source: dev/trunk/jenga/src/smoothie/Symbol.cpp@ 171

Last change on this file since 171 was 171, checked in by dai_9181, 17 years ago

コンパイルできるようにした

File size: 709 bytes
Line 
1#include <jenga/include/smoothie/BasicFixed.h>
2#include <jenga/include/smoothie/Symbol.h>
3#include <jenga/include/smoothie/Class.h>
4
5Symbol::Symbol( const char *fullName )
6{
7 char areaName[VN_SIZE] = ""; //オブジェクト変数
8 char nestName[VN_SIZE] = ""; //入れ子メンバ
9 bool isNest = CClass::SplitName( fullName, areaName, nestName );
10
11 namespaceScopes = NamespaceScopes( areaName );
12 name = nestName;
13}
14Symbol::Symbol( const string &fullName )
15{
16 char areaName[VN_SIZE] = ""; //オブジェクト変数
17 char nestName[VN_SIZE] = ""; //入れ子メンバ
18 bool isNest = CClass::SplitName( fullName.c_str(), areaName, nestName );
19
20 namespaceScopes = NamespaceScopes( areaName );
21 name = nestName;
22}
Note: See TracBrowser for help on using the repository browser.