Ignore:
Timestamp:
May 1, 2008, 11:03:14 PM (16 years ago)
Author:
dai_9181
Message:

ヘッダファイルを整理中

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ab5.0/abdev/BasicCompiler_Common/src/TypeDef.cpp

    r507 r523  
    44#include <Compiler.h>
    55
    6 TypeDef::TypeDef( const NamespaceScopes &namespaceScopes, const string &name, const string &baseName, int nowLine )
     6TypeDef::TypeDef( const NamespaceScopes &namespaceScopes, const std::string &name, const std::string &baseName, int nowLine )
    77    : Symbol( namespaceScopes, name )
    88    , baseName( baseName )
     
    1414}
    1515/*
    16 bool TypeDef::IsEqualSymbol( const NamespaceScopes &namespaceScopes, const string &name ) const
     16bool TypeDef::IsEqualSymbol( const NamespaceScopes &namespaceScopes, const std::string &name ) const
    1717{
    1818    if( GetName() != name ){
     
    2121    return compiler.GetNamespaceSupporter().IsSameAreaNamespace( this->namespaceScopes, namespaceScopes );
    2222}
    23 bool TypeDef::IsEqualSymbol( const string &fullName ) const
     23bool TypeDef::IsEqualSymbol( const std::string &fullName ) const
    2424{
    2525    char AreaName[VN_SIZE] = "";        //オブジェクト変数
     
    5252TypeDefCollection::~TypeDefCollection(){
    5353}
    54 void TypeDefCollection::Add( const NamespaceScopes &namespaceScopes, const string &name, const string &baseName, int nowLine ){
     54void TypeDefCollection::Add( const NamespaceScopes &namespaceScopes, const std::string &name, const std::string &baseName, int nowLine ){
    5555    TypeDef typeDef( namespaceScopes, name, baseName, nowLine );
    5656    this->push_back( typeDef );
    5757}
    58 int TypeDefCollection::GetIndex( const NamespaceScopes &namespaceScopes, const string &name ) const{
     58int TypeDefCollection::GetIndex( const NamespaceScopes &namespaceScopes, const std::string &name ) const{
    5959    int max = (int)(*this).size();
    6060    for( int i=0; i<max; i++ ){
     
    6565    return -1;
    6666}
    67 int TypeDefCollection::GetIndex( const string &fullName ) const{
     67int TypeDefCollection::GetIndex( const std::string &fullName ) const{
    6868    char AreaName[VN_SIZE] = "";        //オブジェクト変数
    6969    char NestName[VN_SIZE] = "";        //入れ子メンバ
     
    7373}
    7474
    75 void TypeDefCollection::Add( const NamespaceScopes &namespaceScopes, const string &expression, int nowLine ){
     75void TypeDefCollection::Add( const NamespaceScopes &namespaceScopes, const std::string &expression, int nowLine ){
    7676    int i;
    7777    char temporary[VN_SIZE];
Note: See TracChangeset for help on using the changeset viewer.