Subj : Re: Class in Header file To : borland.public.cpp.borlandcpp From : maeder Date : Mon May 17 2004 07:38 pm john blackburn writes: > Isn't "list" a reserved keyword under C++ ? Not literally. std::list is the name of a class template of the Standard C++ Library, so it is probably a good idea to not use the name list for anything else, or future readers of the code will be surprised. I don't think that this rule should be extended to List, though. .