src/cx/list.h

changeset 525
536646d1575b
parent 524
e98b09018d32
child 526
b070ef465313
equal deleted inserted replaced
524:e98b09018d32 525:536646d1575b
88 size_t size; 88 size_t size;
89 /** 89 /**
90 * The capacity of the list (maximum number of elements). 90 * The capacity of the list (maximum number of elements).
91 */ 91 */
92 size_t capacity; 92 size_t capacity;
93 /**
94 * Flag indicating whether cxListDestroy() shall free each list element,
95 * even if cx_list_s.content_destructor did not do that.
96 */
97 bool autofree_contents;
98 }; 93 };
99 94
100 /** 95 /**
101 * The class definition for arbitrary lists. 96 * The class definition for arbitrary lists.
102 */ 97 */

mercurial