06-04 HeaderTemplate
From Manuals
This example demonstrates the use of a header file and C/C++ preprocessor and preprocessor directives.
/* Program Example 6.4: Template for .h header file
*/
#ifndef VARIABLE_H // if VARIABLE_H has not previously been defined
#define VARIABLE_H // define it now
// header declarations here…
#endif // end of the if directive
#include "header.h"
main() {
}
