Changeset 171 in dev for trunk/jenga/src


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

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

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>
    31#include <jenga/include/smoothie/BasicFixed.h>
     2#include <jenga/include/smoothie/Class.h>
    43
    54bool Prototype::IsEqualSymbol( const NamespaceScopes &namespaceScopes, const string &name ) const
     
    1918    char AreaName[VN_SIZE] = "";        //オブジェクト変数
    2019    char NestName[VN_SIZE] = "";        //入れ子メンバ
    21     bool isNest = CMember::SplitName( fullName.c_str(), AreaName, NestName );
     20    bool isNest = CClass::SplitName( fullName.c_str(), AreaName, NestName );
    2221
    2322    return IsEqualSymbol( NamespaceScopes( AreaName ), NestName );
  • 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.