policymanagement/policyengine/policyengineserver/src/PolicyProcessor.cpp
branchGCC_SURGE
changeset 36 1ff291ad36ba
parent 27 2c8580950a26
child 53 b3a7d8e28262
equal deleted inserted replaced
33:99323845c621 36:1ff291ad36ba
    53 	//set container properties
    53 	//set container properties
    54 	container->iAttribute = aAttribute;
    54 	container->iAttribute = aAttribute;
    55 	container->iAttributeType = aAttributeTypes; 
    55 	container->iAttributeType = aAttributeTypes; 
    56 
    56 
    57 	//append to list
    57 	//append to list
    58 	RArray::AppendL( container);
    58 	RArray<AttributeContainerHelper::TContainer*>::AppendL( container);
    59 		
    59 		
    60 	//remove from cleanup
    60 	//remove from cleanup
    61 	CleanupStack::Pop( 2, aAttribute);
    61 	CleanupStack::Pop( 2, aAttribute);
    62 }
    62 }
    63 
    63 
    73 		AttributeContainerHelper::TContainer * container = operator[]( i);
    73 		AttributeContainerHelper::TContainer * container = operator[]( i);
    74 		delete container->iAttribute;
    74 		delete container->iAttribute;
    75 		delete container;
    75 		delete container;
    76 	}
    76 	}
    77 	
    77 	
    78 	RArray::Close();
    78 	RArray<AttributeContainerHelper::TContainer*>::Close();
    79 }
    79 }
    80 
    80 
    81 
    81 
    82 
    82 
    83 // -----------------------------------------------------------------------------
    83 // -----------------------------------------------------------------------------