Mark Sullivan wrote:
> What is the difference between the extensions *.hxx and just *.h for
> header files ? Can they co-exist?
The extention of the header files is by convention. You can name a header
file anything you want.
#include "MyFile.bah"
is legal.
I've seen both .h and .hpp used for C++ header files. .H may even be a
likely extion. However, I would suggest you stick with the conventions as
it makes it easier to find things. Easier to search all .h or .h* files for
some specific thing you are looking for then have to guess what extention
the programmer used.
--
Jim Langston