
March 15th, 2003, 10:27 AM
|
 |
Contributing User
|
|
Join Date: Jan 2003
Location: USA
|
|
|
To my knowledge, one convention for naming C++ source files is with a ".cc" extension, so by analogy the header files would be ".hh". Should be exactly the same thing as a ".h" header file, unless your particular compiler is really picky about the file extensions.
A normal include statement should be all you need to use it; e.g.:
#include "aheader.hh"
|