Class : List

List :

prototype: List ()

description:constructors



List :

prototype: List (const ClassName &Element )

description:constructors



List :

prototype: List (const List &L )

description:constructors



~List :

prototype: ~List ()

description:destructors



DeleteList :

prototype: void DeleteList ()

description:delete all elements



operator = :

prototype: List& operator = (const List& L )

description:assignement



operator += :

prototype: List& operator += (const ClassName& Element )

description:add an element to the list



operator += :

prototype: List& operator += (ClassName* Element )

description:add an element to the list



Insert :

prototype: List& Insert (const ClassName& , int Pos )

description:insert an element in the list



Insert :

prototype: List& Insert (ClassName* , int Pos )

description:insert an element in the list



Link :

prototype: List& Link (const List& L )

description:link two lists



Merge :

prototype: List& Merge (const List& , int Pos )

description:merge two lists



Extract :

prototype: List Extract (const List& , int Pos )

description:extract a sublist



Extract :

prototype: List Extract (const List& , int , int Nbr )

description:extract a sublist



operator [] :

prototype: ClassName& operator [] (const int index )

description:return an element of the list



DeleteElement :

prototype: void DeleteElement (int Pos )

description:delete an element of the list



GetNbrElement :

prototype: int GetNbrElement ()

description:return the number of element



UpOrder :

prototype: List& UpOrder ()

description:sort list



DownOrder :

prototype: List& DownOrder ()

description:sort list



Back to index.