TList is a component of Borland C++ Builder that is wonderful:
it's like the STL class list , excepted the fact that you can add any variable that has at most 4 bytes (Its elements are considered like void *).
Its main inconvenient is that it is adapted only for storage of objects which have a size fewer than 4 bytes(like int, short,T*,byte,char,...)
I'm searching for a class like the generic TList class, which use the STL class std::list , and which contains the same methods than the TList class.
If someone knows if this kind of implementation have been done ...
Thank for reading...
it's like the STL class list , excepted the fact that you can add any variable that has at most 4 bytes (Its elements are considered like void *).
Its main inconvenient is that it is adapted only for storage of objects which have a size fewer than 4 bytes(like int, short,T*,byte,char,...)
I'm searching for a class like the generic TList class, which use the STL class std::list , and which contains the same methods than the TList class.
If someone knows if this kind of implementation have been done ...
Thank for reading...