comparison DynArray.h @ 13:1cffeb870564

include statements adapted to the new folder structure
author hausers
date Thu, 09 Feb 2012 15:47:41 +0100
parents 4506c08ed60d
children 53c5d022dd45
comparison
equal deleted inserted replaced
4:22db544b0f0e 6:b309936d1429
6 */ 6 */
7 7
8 #ifndef _DYNARRAY_H 8 #ifndef _DYNARRAY_H
9 #define _DYNARRAY_H 9 #define _DYNARRAY_H
10 10
11 #include "../VMS_primitive_data_types.h" 11 #include "../../VMS_Implementations/VMS_impl/VMS_primitive_data_types.h"
12 12
13 13
14 //A dynamic array is same as any other array, but add a DynArrayInfo next 14 //A dynamic array is same as any other array, but add a DynArrayInfo next
15 // to it. Accesses and updates of array indexes are done normally, it's 15 // to it. Accesses and updates of array indexes are done normally, it's
16 // only when add a new element into array that use the extra info. 16 // only when add a new element into array that use the extra info.