Changeset 750 in dev for trunk/ab5.0/abdev/ab_common/include
- Timestamp:
- Sep 24, 2008, 2:02:16 AM (16 years ago)
- Location:
- trunk/ab5.0/abdev/ab_common/include
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/ab_common/include/Lexical/Class.h
r728 r750 194 194 { 195 195 int i = 0; 196 BOOST_FOREACH( const GenericType &genericType, formalGenericTypes )196 foreach( const GenericType &genericType, formalGenericTypes ) 197 197 { 198 198 if( genericType.GetName() == name ) … … 206 206 bool IsExistFormalGenericTypeParameter( const std::string &name ) const 207 207 { 208 BOOST_FOREACH( const GenericType &genericType, formalGenericTypes )208 foreach( const GenericType &genericType, formalGenericTypes ) 209 209 { 210 210 if( genericType.GetName() == name ) -
trunk/ab5.0/abdev/ab_common/include/Lexical/DataTable.h
r640 r750 104 104 105 105 // スケジュールを追加 106 BOOST_FOREACH( const Schedule &schedule, dataTable.schedules )106 foreach( const Schedule &schedule, dataTable.schedules ) 107 107 { 108 108 this->schedules.push_back( -
trunk/ab5.0/abdev/ab_common/include/Lexical/Namespace.h
r737 r750 38 38 39 39 bool isFirst = true; 40 BOOST_FOREACH( const std::string &itemStr, me ){40 foreach( const std::string &itemStr, me ){ 41 41 if( isFirst ){ 42 42 isFirst = false; -
trunk/ab5.0/abdev/ab_common/include/Lexical/Procedure.h
r702 r750 57 57 } 58 58 ~Procedure(){ 59 BOOST_FOREACH( Parameter *pParam, params ){59 foreach( Parameter *pParam, params ){ 60 60 delete pParam; 61 61 } -
trunk/ab5.0/abdev/ab_common/include/Lexical/Type.h
r713 r750 361 361 { 362 362 const BlittableTypes &blittableTypes = *this; 363 BOOST_FOREACH( const BlittableType &blittableType, blittableTypes ){363 foreach( const BlittableType &blittableType, blittableTypes ){ 364 364 if( blittableType.GetBasicType().Equals( type ) ){ 365 365 return true; … … 371 371 { 372 372 const BlittableTypes &blittableTypes = *this; 373 BOOST_FOREACH( const BlittableType &blittableType, blittableTypes ){373 foreach( const BlittableType &blittableType, blittableTypes ){ 374 374 if( blittableType.GetBasicType().Equals( type ) ){ 375 375 return blittableType; … … 384 384 { 385 385 const BlittableTypes &blittableTypes = *this; 386 BOOST_FOREACH( const BlittableType &blittableType, blittableTypes ){386 foreach( const BlittableType &blittableType, blittableTypes ){ 387 387 if( blittableType.GetBasicType().Equals( type ) ){ 388 388 return blittableType.GetClassPtr(); -
trunk/ab5.0/abdev/ab_common/include/ab_common.h
r640 r750 2 2 3 3 #define trace_for_serialize( msg ) 4 5 #include "libs.h" 4 6 5 7 #include "BasicFixed.h"
Note:
See TracChangeset
for help on using the changeset viewer.