comparison DynArray.h @ 12:f9776626259b

include statements adapted to the new folder structure
author hausers
date Thu, 09 Feb 2012 15:44:39 +0100
parents f35e64d7a42b
children 9de0a9369134
comparison
equal deleted inserted replaced
2:b0c04cf7f8d0 5:ad2cd7c19808
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.