Ignore:
Timestamp:
Jun 26, 2007, 5:04:29 AM (17 years ago)
Author:
dai_9181
Message:
 
File:
1 edited

Legend:

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

    r186 r192  
    2626}
    2727
    28 bool NamespaceScopes::IsImported() const
    29 {
    30     BOOST_FOREACH( const NamespaceScopes &namespaceScopes, Smoothie::Temp::importedNamespaces ){
    31         if( this->IsEqual( namespaceScopes ) ){
    32             return true;
    33         }
    34     }
    35     return false;
    36 }
    3728bool NamespaceScopes::IsLiving() const
    3829{
     
    10495    lstrcpy( simpleName, fullName + lstrlen( namespaceStr ) + dotLength );
    10596}
    106 bool NamespaceScopesCollection::Imports( const string &namespaceStr ){
    107     NamespaceScopes namespaceScopes( namespaceStr );
    108     if( !Smoothie::GetMeta().namespaceScopesCollection.IsExist( namespaceScopes ) ){
    109         return false;
    110     }
    111 
    112     this->push_back( namespaceScopes );
    113 
    114     return true;
    115 }
    11697bool NamespaceScopesCollection::CollectNamespaces( const char *source, NamespaceScopesCollection &namespaceScopesCollection )
    11798{
Note: See TracChangeset for help on using the changeset viewer.