Preprocessor Wrapper?

i read somewhere that a prepocessor wrapper prevent a code in the header file from being include into the same source code file more than once. my question is what the heck does it look like?
Last edited on
http://www.cplusplus.com/forum/articles/10627/#msg49679
It's the
1
2
3
4
#ifndef ...
#define ...
/*code*/
#endif 
part
Last edited on
Topic archived. No new replies allowed.