Lines Matching refs:inhalt
40 virtual ~List() { delete [] inhalt; } in ~List()
87 { return inhalt[n]; } in elem()
90 { return inhalt[n]; } in elem()
92 XX * inhalt; member in List
121 : inhalt(0), in List()
140 inhalt[p] = inhalt[p-1]; in insert()
142 inhalt[pos] = elem_; in insert()
156 inhalt[p] = inhalt[p+1]; in remove()
197 if (inhalt != 0) in alloc()
203 pNew[i] = inhalt[i]; in alloc()
206 delete [] inhalt; in alloc()
209 inhalt = pNew; in alloc()
228 memmove(this->inhalt[pos+1], this->inhalt[pos], (this->len-pos) * sizeof(XY*) ); in insert()
229 this->inhalt[pos] = elem_; in insert()
240 delete this->inhalt[pos]; in remove()
241 memmove(this->inhalt[pos], this->inhalt[pos+1], (this->len-pos) * sizeof(XY*) ); in remove()