The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
0answers
21 views

Any reason to define a header-guard to 1?

Occasionally I observe such header guards: #ifndef FOO #define FOO 1 ... #endif // FOO But I learned it this way: #ifndef FOO #define FOO ... #endif // FOO Is the define to 1 an old ...
0
votes
1answer
41 views

#include repetition

Context: I've got one class which has two include clauses: #ifndef VAR_RECORD_SONG_H #define VAR_RECORD_SONG_H #include "VarRecord.h" #include "Compressor.h" class VarRecordSong : public VarRecord ...
2
votes
2answers
160 views

Guards in Haskell, perfroming operations using checks

So i have searched different ways of approaching the "if" statements in haskell and have a doubt about guards, say i have a tuple and want to perform +,-,*,/ checking the conditions: given (x,y) if x ...
0
votes
3answers
74 views

Find include guard typos in C++ with gnu coreutils

Below is a typo for a C++ include guard. Both should read _MYFILE_H_. #ifndef _MYFILE_H_ #define _MYFLIE_H_ How would you suggest searching a bunch of header files for a typo like this using GNU ...
6
votes
1answer
422 views

Why aren't my include guards preventing recursive inclusion and multiple symbol definitions?

Two common questions about include guards: (*) FIRST QUESTION: Why aren't include guards protecting my header files from mutual, recursive inclusion? I keep getting errors about non-existing symbols ...
0
votes
1answer
152 views

c - #include and mulitple typedefs

I'm writing an embedded C program in eclipse with gcc and can't see how to get around a certain issue. I have a typedef in a header file which is protected by an include guard. Since I use this ...
1
vote
2answers
202 views

C++ header redefinition (ws2ipdef.h)

I use in my project a lot of includes (but every header file use header guards like #ifndef _HEADER_H #define _HEADER_H ... #endif and now I'm getting this errors from ws2ipdef.h (automatically ...
15
votes
2answers
421 views

Should I still use #include guards AND #pragma once?

http://en.wikipedia.org/wiki/Pragma_once Should I still use include guards when all of these compilers support #pragma once? A lot of responses on stack overflow say to use both for compatibility, ...
6
votes
4answers
199 views

Difference Between includes and imports [duplicate]

Possible Duplicate: What is the difference between #import and #include in Objective-C? What is the difference between #include< > #include" " #import< > #import" "
0
votes
1answer
134 views

C++ with Extern “C” causing Duplicate Symbols Error

I am trying to use a extern "C" function inside my header file for a c++ class. When I compile I keep getting the error duplicate symbol _currentInstance in: main.o GLHandler.o I thought I had the ...
1
vote
2answers
166 views

Include guard style, C++

I have a .h file which contains several class definitions. I'd like to use C++'s include guards in this file; however, I was wondering which way of using the include guards is considered ...
0
votes
1answer
283 views

header file include-loop and multiple definition

I have a util.h containing a function which will be used in a.h and 'b.h', and further more, a.h and b.h will include each other in order to access some classes defined in each other. //util.h ...
0
votes
2answers
150 views

Is there include guards in the standard headers/libraries?

By the fact if I include stdlib.h into each file of my program and I do not get an re-definition error. So, the answer is yes. Right? I'm reading the libxml2 source code, and in HTMLparser.c there ...
4
votes
2answers
206 views

Does “#pragma once” have the potential to cause errors?

All of my header files use include guards as well as pragma once: #pragma once #ifndef FILE_NAME_H #define FILE_NAME_H class foo { //foo interface.. }; #endif /* FILE_NAME_H */ I understand ...
0
votes
3answers
142 views

Why is it not permitted to define the members of a C struct more than once?

The rule in C against declaring a struct's members more than once seems to me to be the main reason that include guards are necessary. If we have the following in "header.h": struct s { int a; ...
3
votes
4answers
779 views

#ifndef syntax for include guards in C++

I'm currently studying for a CS course's final exam and I've run into a minor (maybe major?) issue regarding the syntax of C++ #ifndef. I've looked at the syntax for #infndef when using it as an ...
1
vote
1answer
2k views

expected unqualified-id before ‘-’ token

I ran into a weird situation. My understanding is that the order of include header files doesn't matter much if I have put #ifndef #define #endif flag to all .h files. Old codes a.h #ifndef A_H ...
1
vote
1answer
80 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 ...
16
votes
3answers
2k 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)
3
votes
5answers
180 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 ...
2
votes
3answers
502 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. ...
2
votes
5answers
126 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
417 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 ...
1
vote
1answer
324 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 ...
4
votes
6answers
4k 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
votes
2answers
497 views

endless include loops [duplicate]

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 ...
2
votes
6answers
691 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
3answers
994 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: ...
5
votes
3answers
743 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 ...
2
votes
1answer
125 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 ...
8
votes
1answer
765 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 ...
7
votes
3answers
520 views

When not to use include guard in header file?

We all know when to use include guard, but when shall we not use it in our project? Recently, I saw a project with mix compilation (CUDA + GCC), one header file (CUDA file) is deliberately left ...
1
vote
1answer
51 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.
5
votes
3answers
623 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 ...
7
votes
6answers
392 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 ...
1
vote
4answers
334 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 ...
0
votes
5answers
308 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 // ... ...
2
votes
9answers
1k 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 ...
3
votes
3answers
1k 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 { ...
0
votes
4answers
458 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: ...
2
votes
2answers
1k 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
267 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 ...
0
votes
4answers
366 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 ...
23
votes
2answers
600 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 <Class Name>_H, but what I would like is something like ...
11
votes
2answers
1k 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
4answers
320 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 ...
3
votes
3answers
319 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 ...
6
votes
4answers
485 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 ...
7
votes
3answers
176 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?
1
vote
6answers
671 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 2