Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
15
votes
17answers
22k views

prevent direct access to a php include file

I have a php file which I will be using as exclusively as an include. Therefor I would like to throw an error instead of executing it when it's accessed directly by typing in the URL instead of being ...
10
votes
3answers
115 views

difference between “ifndef” and “if !defined” in C?

I have seen #ifndef ABC and #if !defined (ABC) in the same C source file. Is there subtle difference between them? (If it is a matter of style, why would someone use them in the same file)
10
votes
11answers
791 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 ...
9
votes
1answer
478 views

Eclipse-CDT: Use Namespace in automatic generated include-guards

Is it possible (and how) to add the namespace in the name of the automatic generated include guards in Eclipse CDT, when creating a new class using the .hpp/.cpp templates? For me Eclipse generates a ...
7
votes
3answers
166 views

Protecting one class from the bad programming of another?

Is there a way in PHP to try to include a file, but if the file contains errors that stop it from compiling to just skip that file from inclusion?
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
263 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
671 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 ...
6
votes
9answers
3k views

C header file loops

I have a couple of header files, which boil down to: tree.h: #include "element.h" typedef struct tree_ { struct *tree_ first_child; struct *tree_ next_sibling; int tag; element *obj; ...
5
votes
3answers
146 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
303 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 ...
4
votes
0answers
226 views

Customizing inclusion guards in eclipse CDT

Is there a way to customize the format of inclusion guards in eclipse CDT for the class generation template? The current format is H, but what I would like is something like __H. Not that I expect to ...
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
0answers
135 views

Customizing include-guard for Eclipse CDT

I want an automatically generated include-guard by creating a new C++-class with Eclipse/CDT but I don't find any way to change the ${include_guard_symbol} attribute. My wish is an include-guard with ...
3
votes
3answers
540 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
133 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 ...
3
votes
2answers
214 views

SAS macro include guards

In other programming languages such as C++, include guards are used to prevent multiple inclusions of the same code. Like this in C++: #ifndef FOO_INCLUDED #define FOO_INCLUDED .... #endif Does it ...
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
6answers
108 views

Header/Include guards don't work?

For some reason, I'm getting multiple declarations of content within my header file even though I'm using header guards. My example code is below: main.c: #include "thing.h" int main(){ ...
2
votes
2answers
261 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
1answer
46 views

how to prevent source() R code duplicately

I have lots of R source files. For example, in both A.R and C.R files, B.R is loaded via source(). Now I'd like to use the functions in both A.R and C.R, how can I avoid sourcing B.R repeatedly? Is ...
1
vote
3answers
100 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
177 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
1answer
41 views

Is there any mechanism in Shell script alike “include guard” in C++?

let's see an example: in my main.sh, I'd like to source a.sh and b.sh. a.sh, however, might have already sourced b.sh. Thus it will cause the codes in b.sh executed twice. Is there any mechanism alike ...
1
vote
1answer
36 views

gcc/xCode — #include that does not trigger an error (or warning) if the file does not exist?

Is this possible? Basically, what I want to do is something like this: #includeIfItExists "header.h" and if header.h does not exist, the compiler simply continues on its merry way.
1
vote
4answers
173 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
416 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
417 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
642 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 ...
1
vote
2answers
210 views

how to include javascript files in Google Gears Worker (no DOM access)

how does one include other .js files in the .js of a Worker. Every "include" solution for Javascript that I've found does it by loading into a tag, which is not an option for Workers since they don't ...
1
vote
5answers
339 views

Tricky include situation in C

I have a file named cpu.h that includes two other headers named register.h and addrmode.h. A cpu_t struct is defined in cpu.h that the two includes need for their functions. I try to include cpu.h in ...
1
vote
4answers
4k views

suppress gcc warnings : “warning: this is the location of the previous definition”

I need a set of wrappers around the standard system calls-open,listen,etc. For these i have a few "#define" as in: #define open(a,b,c) JCL_Open(a,b,c) But when i compile the header and associated ...
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 ...
0
votes
2answers
315 views

Is there a good way to prevent jQuery from being redefined?

I encountered a problem that took me some time to debug where a plug-in that I was using for jQuery (in this case jFeed) was not working. The problem ended up being because we also used Amazon ...
-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
201 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: ...