Ignore:
Timestamp:
Aug 10, 2007, 3:16:42 AM (17 years ago)
Author:
dai_9181
Message:
 
File:
1 edited

Legend:

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

    r270 r271  
    3535
    3636    // クラス
     37    meta.GetClasses().Iterator_Reset();
     38    while( meta.GetClasses().Iterator_HasNext() )
     39    {
     40        CClass *pClass = meta.GetClasses().Iterator_GetNext();
     41        pClass->isTargetObjectModule = false;
     42        this->GetClasses().Put( pClass );
     43    }
     44    meta.GetClasses().PullOutAll();
    3745
    3846    // グローバル変数
     47    BOOST_FOREACH( Variable *pVar, meta.globalVars )
     48    {
     49        pVar->isTargetObjectModule = false;
     50        this->globalVars.push_back( pVar );
     51    }
     52    meta.globalVars.PullOutAll();
    3953
    4054    // グローバル定数
     55    meta.GetGlobalConsts().Iterator_Reset();
     56    while( meta.GetGlobalConsts().Iterator_HasNext() )
     57    {
     58        CConst *pConst = meta.GetGlobalConsts().Iterator_GetNext();
     59        pConst->isTargetObjectModule = false;
     60        this->GetGlobalConsts().Put( pConst );
     61    }
     62    meta.GetGlobalConsts().PullOutAll();
    4163
    4264    // グローバル定数マクロ
     65    meta.GetGlobalConstMacros().Iterator_Reset();
     66    while( meta.GetGlobalConstMacros().Iterator_HasNext() )
     67    {
     68        ConstMacro *pConstMacro = meta.GetGlobalConstMacros().Iterator_GetNext();
     69        pConstMacro->isTargetObjectModule = false;
     70        this->GetGlobalConstMacros().Put( pConstMacro );
     71    }
     72    meta.GetGlobalConstMacros().PullOutAll();
    4373
    4474    // blittable型
     75    BOOST_FOREACH( BlittableType &blittableType, meta.blittableTypes )
     76    {
     77        blittableType.isTargetObjectModule = false;
     78        this->blittableTypes.push_back( blittableType );
     79    }
     80    meta.blittableTypes.clear();
    4581
    4682    // TypeDef
     83    BOOST_FOREACH( TypeDef &typeDef, meta.typeDefs )
     84    {
     85        typeDef.isTargetObjectModule = false;
     86        this->typeDefs.push_back( typeDef );
     87    }
     88    meta.typeDefs.clear();
    4789
    4890    // 関数ポインタ
     91    BOOST_FOREACH( ProcPointer *pProcPointer, meta.procPointers )
     92    {
     93        pProcPointer->isTargetObjectModule = false;
     94        this->procPointers.push_back( pProcPointer );
     95    }
     96    meta.procPointers.PullOutAll();
    4997}
Note: See TracChangeset for help on using the changeset viewer.