QUOTE(Kavya @ 5 Dec, 2006 - 07:24 AM)

I came across this code
CODE
template<>
class list<void*>
{
...
};
Can someone tell what it means?
It's simply a specialisation for list of void*. It allows users to have single interface with different implementations.