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