Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C++ include guard

So I know how to place an include guard in my own header files with the standard

#ifndef ...
#define ...

Now, My question is about including libraries that are not my own. would be a good example. I have a header file which requires the use of string, so I do the following

foo.h

#ifndef FOO_H
#define FOO_H

#include <string>

... code etc ...

#endif

Now, if I have another header file called.. lets say, bar.h, which ALSO requires the use of <string>, how can i prevent multiple inclusions? Does the STL already have include guards in place?

like image 223
grep Avatar asked Dec 13 '11 03:12

grep


2 Answers

The STL library also has include guards and any good library should do the same.

#ifndef _GLIBCXX_STRING
#define _GLIBCXX_STRING 1

This is from gcc's

like image 124
Adrian Cornish Avatar answered Sep 24 '22 13:09

Adrian Cornish


Assuming that by "STL" you mean the C++ standard library, then you can refer to the C++ standard. §17.6.2.2/2 states:

A translation unit may include library headers in any order. Each may be included more than once, with no effect different from being included exactly once, except that the effect of including either <cassert> or <assert.h> depends each time on the lexically current definition of NDEBUG.

This means that it is not necessary to guard against multiple inclusions of the same header.

like image 25
Mankarse Avatar answered Sep 21 '22 13:09

Mankarse