Ignore:
Timestamp:
Jun 19, 2007, 1:58:06 AM (17 years ago)
Author:
dai_9181
Message:

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/jenga/src/smoothie/Symbol.cpp

    r170 r171  
    11#include <jenga/include/smoothie/BasicFixed.h>
    22#include <jenga/include/smoothie/Symbol.h>
    3 #include <jenga/include/smoothie/Member.h>
     3#include <jenga/include/smoothie/Class.h>
    44
    55Symbol::Symbol( const char *fullName )
     
    77    char areaName[VN_SIZE] = "";        //オブジェクト変数
    88    char nestName[VN_SIZE] = "";        //入れ子メンバ
    9     bool isNest = CMember::SplitName( fullName, areaName, nestName );
     9    bool isNest = CClass::SplitName( fullName, areaName, nestName );
    1010
    1111    namespaceScopes = NamespaceScopes( areaName );
     
    1616    char areaName[VN_SIZE] = "";        //オブジェクト変数
    1717    char nestName[VN_SIZE] = "";        //入れ子メンバ
    18     bool isNest = CMember::SplitName( fullName.c_str(), areaName, nestName );
     18    bool isNest = CClass::SplitName( fullName.c_str(), areaName, nestName );
    1919
    2020    namespaceScopes = NamespaceScopes( areaName );
Note: See TracChangeset for help on using the changeset viewer.