Tagged Questions

41
votes
11answers
11k views

Is #pragma once a safe include guard?

I've read that there is some compiler optimization when using #pragma once which can result in faster compilation. I recognize that is non-standard, and thus could pose a cross-platform compatibility ...
10
votes
11answers
792 views

Why isn't C/C++'s “#pragma once” an ISO standard?

I am currently working on a big project and maintaining all those include guards makes me crazy! Writing it by hand is frustrating waste of time. Although many editors can generate include guards this ...
6
votes
6answers
211 views

Is there any situation where you wouldn't want include guards?

I know why include guards exist, and that #pragma once is not standard and thus not supported by all compilers etc. My question is of a different kind: Is there any sensible reason to ever not have ...
6
votes
4answers
274 views

in C++ , what's so special about “_MOVE_H”?

I have a C++ file like this #ifndef _MOVE_H #define _MOVE_H class Move { int x, y; public: Move(int initX = 0, int initY = 0) : x(initX), y(initY) {} int getX() { return x; } void ...
6
votes
4answers
674 views

Template classes and include guards in C++

Is it wise to have include guards around template classes? Aren't template classes supposed to be reparsed each time you reference them with a different implementation? N.B In Visual C++ 2008 I get ...
5
votes
3answers
147 views

Which comes first? header guards, namespace and includes

I have been making files like this for awhile: Does the order make sense? or should the namespace and the #includes be swapped and why. #ifndef CLASSNAME_H // header guards #define CLASSNAME_H ...
5
votes
4answers
237 views

Are tokens after #endif legal?

I currently do the following and the compiler (MSVC2008 / as well as 2010) doesn't complain about it but I'm not sure if it's a bad idea or not: #ifndef FOO_H_ #define FOO_H_ // note, FOO_H_ is not ...
5
votes
5answers
361 views

In C and C++, why is each .h file usually surrounded with #ifndef #define #endif directives?

Why does each .h file starts with #ifndef #define #endif? We can certainly compile the program without those directives.
4
votes
3answers
307 views

Difference between pragma once inside and outside include guards?

Is there any difference between placing the #pragma once inside the include guards as opposed to outside? case 1: #ifndef SOME_HEADER_H #define SOME_HEADER_H #pragma once case 2: #pragma once ...
3
votes
5answers
131 views

Why to put the entire header content within guard tokens?

C and C++ distinguishes between declarations an definitions. You can declare a symbol many times, but you are allowed to define it only once. By learning this I have an idea to put declarations ...
3
votes
3answers
544 views

multiple definition and namespace

Is that the right way to have functions in namespace that i will #include in multiple files? test.h #pragma once #ifndef TEST #define TEST namespace test{ namespace { ...
3
votes
3answers
152 views

Inclusion problem

I have an inclusion pattern as follows: /* * Class1.h */ #ifndef CLASS1_H_ #define CLASS1_H_ #include "Class2.h" namespace Class1_namespace { class Class1 { Class2* Class2_ptr; void ...
3
votes
1answer
134 views

Quick question regarding Conditional Compilation (ifndef)

This is quite probably a very silly question but I need to be sure. I've been given a class declaration in a header file eg. #ifndef file_H #define file_H class ex{ private: public: }; #endif ...
2
votes
5answers
87 views

Confusion with including header files

When I include a header file, lets say, //myheader.h #ifndef MY_HEADER_H #define MY_HEADER_H //.... #endif into, //mycpp1.cpp #include "myheader.h" What I'm told is, when mycpp1.cpp includes ...
2
votes
5answers
112 views

C include guard

When file1.c includes inc.h (containing the include guard #ifndef INC_H) for the first time, the #define INC_H is performed. But now, when another file2.c includes the same inc.h, is the macro INC_H ...
2
votes
2answers
262 views

C++ cyclic inclusion issue

I have this file logger.hpp: #ifndef _LOGGER_HPP_ #define _LOGGER_HPP_ #include "event.hpp" // Class definitions class Logger { public: /*! * Constructor */ Logger(); /*! ...
1
vote
3answers
101 views

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. ...
1
vote
1answer
127 views

Compilation speed improvements include guards vs. precompiled headers

I want to reduce compile time on a large project. Our primary compiler is Visual Studio 2010 but some of the code gets compiled in gcc. We are currently planning to ensure that all our .h files have ...
1
vote
6answers
178 views

C++ #include guards

SOLVED What really helped me was that I could #include headers in the .cpp file with out causing the redefined error. I'm new to C++ but I have some programming experience in C# and Java so I ...
1
vote
4answers
174 views

Should the include guards be unique even between namespaces?

I am using same class name in two namespaces, say A and B. Should the include guards be unique while declaring the classes with different namespaces too? I mean can't there be two files names AFile.h ...
1
vote
9answers
418 views

Naming Include Guards

How are C++ include guards typically named? I tend to see this a lot: #ifndef FOO_H #define FOO_H // ... #endif However, I don't think that's very intuitive. Without seeing the file name it's ...
1
vote
3answers
164 views

functions used in multiple classes

i sort of asked this before, but i used what i was told to try to get my program to work: Its probably because I am noob at C++, but I am having trouble using #ifndef due to the problem that my ...
1
vote
6answers
418 views

C++ Header Guard issues

I am making a small C++ framework, which contains many .h and .cpp. I have created a general include which include all my .h file such as: framework.h #include "A.h" #include "B.h" #include "C.h" ...
1
vote
3answers
643 views

Are redundant include guards necessary?

Are 'redundant include guards' necessary in Codegear RAD Studio 2009? Is the compiler smart enough to deal with this on it's own? For example, I might have the following 'include guard' in foo.h: ...
1
vote
2answers
879 views

Adding an include guard breaks the build

I added #ifndef..#define..#endif to a file of my project and the compiler fails. As soon as I remove it or put any other name in the define it compiles fine. What could be the problem? Sounds like ...
0
votes
3answers
147 views

Double include solution?

In C++, I have a problem with a double include: File stuffcollection.h #pragma once #ifndef STUFFCOLLECTION_H #define STUFFCOLLECTION_H #include "Stage.h" class Stuffcollection { public: ...
0
votes
5answers
226 views

Valid uses for C++ include guards besides, well, include-guarding?

This question is one of several that discuss naming conventions for C++ include guards. The person asking that question thinks that this naming convention: #ifndef FOO_H #define FOO_H // ... ...
0
votes
4answers
204 views

C++/SDL problem of double inclusion

I'm getting this error from compilator: 1>Linking... 1>main.obj : error LNK2005: "int g_win_flags" (?g_win_flags@@3HA) already defined in init.obj 1>main.obj : error LNK2005: "struct ...
-1
votes
2answers
79 views

endless include loops [closed]

Possible Duplicate: C header file loops Original Question: I always had problems understanding why the following gives errors: something.h #ifndef SOMETHING_H #define SOMETHING_H ...
-1
votes
4answers
203 views

C++ - How can I avoid this header from appearing twice?

At: http://www.learncpp.com/cpp-tutorial/110-a-first-look-at-the-preprocessor/ Under Header guards, there are those code snippets: add.h: #include "mymath.h" int add(int x, int y); subtract.h: ...