Ignore:
Timestamp:
Jun 18, 2007, 3:49:30 AM (17 years ago)
Author:
dai_9181
Message:

NamespaceScopesCollection::Importsをリファクタリング

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abdev/BasicCompiler_Common/src/Namespace.cpp

    r159 r169  
    101101    lstrcpy( simpleName, fullName + lstrlen( namespaceStr ) + dotLength );
    102102}
    103 void NamespaceScopesCollection::Imports( const string &namespaceStr ){
     103bool NamespaceScopesCollection::Imports( const string &namespaceStr ){
    104104    NamespaceScopes namespaceScopes( namespaceStr );
    105105    if( !Smoothie::meta.namespaceScopesCollection.IsExist( namespaceScopes ) ){
    106         SetError(64,namespaceStr.c_str(),cp );
    107         return;
     106        return false;
    108107    }
    109108
    110109    this->push_back( namespaceScopes );
     110
     111    return true;
    111112}
    112113bool NamespaceScopesCollection::CollectNamespaces( const char *source, NamespaceScopesCollection &namespaceScopesCollection )
Note: See TracChangeset for help on using the changeset viewer.