C++ Header file template (including a guard)
#ifndef HEADERNAME_H_
#define HEADERNAME_H_
// CONTENT
#endif
The above basically ensures that only one instance of a definition is loaded or defined.
Heisenberg - Digital Alchemist, Software Architect, Automation Specialist and Mechanical Engineer.
#ifndef HEADERNAME_H_
#define HEADERNAME_H_
// CONTENT
#endif
The above basically ensures that only one instance of a definition is loaded or defined.
No comments:
Post a Comment
Note: only a member of this blog may post a comment.