0
votes
1answer
58 views

How to handle multilevel includes in c?

I have second level include that is giving me grief: Undefined first referenced symbol in file function2 /var/tmp//ccAPaWbT.o ...
1
vote
3answers
94 views

Can the pre-processor directives like #include be placed only at the top of the program code?

I have used the #pragma directive inside functions without error or warning(especially #pragma pack()).But the following code shows the warning incompatible implicit declaration of built-in function ...
0
votes
0answers
22 views

what is FILE_H called in the include guard

In the file file.h, following code is seen. #ifndef FILE_H #define FILE_H ... ... #endif QUESTION: Who generated FILE_H (is FILE_H called identifier?) What is this naming convention called? What ...
2
votes
2answers
122 views

How to include part of file by c++ preprocessor #include

I want to refer some stable library code which is not maintained by me. Actually it is some MFC code snippet. But, whenever I want to include the code snippet, I have to #include entire file, which ...
-1
votes
3answers
88 views

Counting the number of # includes and # define

I'd like to use C program to find the total number of directives like #include, #define, #ifdef, #typedef, etc. Could you suggest any logic for that? I'm not interested in using any scripting or ...
1
vote
4answers
127 views

Does C++ compiler optimize out #includes that are not used?

When building a growing library of classes/functions, I've commonly seen a sort of "umbrella" header file that #includes all the common header files of a project. For example: dsp.h #include ...
2
votes
2answers
275 views

How to write reusable glsl code?

My shaders often share much of the same functionality. For instance calculation of diffuse/specular lighting. I would like to write this one time and then reuse the code across different shaders. ...
2
votes
2answers
141 views

#include file derived from macro __FILE__?

Observe the following program: #include __FILE__ main(){} the preprocessor gets stuck in inifite recursion including a copy of itself inside itself and complaining about main() already being ...
3
votes
2answers
46 views

Including Files - Shared Source And Duplicate Names

I have a situation where I am using two libraries which have duplicate header file names. For example timer.h exists in both libraries. I think the normal solution to this would be to explicitly ...
17
votes
5answers
563 views

Can I split a long #include directive into two lines?

I wish there was a way to split a #include directive across two lines, so that my code can conform to 80 characters per line, despite the necessity of a very long include path. Other than expanding ...
3
votes
5answers
223 views

Include directives in header file? [duplicate]

Possible Duplicate: where should “include” be put in C++ Obviously, there are two "schools of thought" as to whether to put #include directives into C++ header files (or, as an ...
0
votes
3answers
493 views

C++ program sees an included .txt file as code

I am just learning the very basic aspects of input/output streams, and can't seem to have my program read a text file. It gives me errors that indicate it is trying to read the .txt file as C++ code, ...
0
votes
1answer
75 views

What do the include paths/numbers in preprocessed output of icpc(or gcc I guess) mean?

If I use the -E flag when compiling, I get the pre-processed output. Some of the lines in this output is :- # 4 "../Framework.h" 2 # 1 "../Basic.h" 1 # 1 "/usr/include/c++/4.1.2/queue" 1 3 What ...
0
votes
1answer
151 views

Selectively include headers in Qt using preprocessors

I am trying to include windows specific headers on a cross-platform project in the following way. #ifdef Q_OS_WIN #include "qt_windows.h" #include "Shellapi.h" #endif For some reasons, the files ...
2
votes
3answers
854 views

C circular dependency

I have this problem with circular dependency in C, i looked around the other questions about this topic but really couldn't find the answer. I have this first struct named vertex #ifndef ...
0
votes
1answer
109 views

How to get complex C pre-processor behavior to simplify dynamic program assembly

I am writing a program to assemble code for another dynamic program written in the OpenCL language. For the purpose of this question, let's just assume the dynamic program language is C99 with the ...
3
votes
1answer
386 views

Include local files

I need to embed Boost headers in my project. According to this question, the recommendation would be to include using double-quote (#include "boost/filesystem.hpp") so that it doesn't use the system ...
0
votes
0answers
577 views

nested #include and error : fatal error: map : No such file or directory

I wrote a multiple files program in C/C++ and create library.h and put all of *.h in library.h, Then #include "library.h" same the following code : #ifndef LIBRARY_H_ #include "library.h" #endif ...
1
vote
2answers
386 views

Including a postscript file into another one?

I wonder if there a standard way to include a postscript file into another. For example, say I have got one file of data generated by a 3rd party program: %!PS \mydata [ 1 2 3 4 5 6 (...) ...
10
votes
2answers
10k views

stdlib.h: no such file or directory

I am using various stdlib functions like srand(), etc. I have the line #include <stdlib.h> at the top of my code. I entered this on the command line: # find / -name stdlib.h find: ...
0
votes
2answers
179 views

How can you inline PHP includes/requires, or generate one PHP from several?

I'm trying to analyze/refactor/rewrite a complex PHP site. While I can work with separate files, I'd like to combine everything into one file so I can figure out the context without jumping between ...
0
votes
3answers
151 views

How expensive it is for the compiler to process an include-guarded header?

To speed up the compilation of a large source file does it make more sense to prune back the sheer number of headers used in a translation unit, or does the cost of compiling code far outweigh the ...
9
votes
4answers
2k views

Preprocessor tomfoolery (stringifying a #include)

Note: This question has nothing to do with OpenCL per se... check the last paragraph for a succinct statement of my question. But to provide some background: I'm writing some C++ code that makes use ...
3
votes
5answers
463 views

Partially preprocess a C or C++ source file?

Is there a way to partially preprocess a C or C++ source file? By "partially preprocess" I mean expanding some but not all of the #include directives. For example, I would like to expand #includes ...
2
votes
4answers
366 views

Can I rely on nested #includes? [duplicate]

Possible Duplicate: C++ style question: what to #include? When I #include a header file, and I also need other files that are already #included from the first one, should I rely on the ...
3
votes
1answer
161 views

cpp: delay #include's until second pass

I'm running my source file through the C preprocessor twice before compiling it, and I want to delay The #include directives until the second pass. Intuitively, I tried this, but it doesn't work: ...
3
votes
4answers
2k views

C Macro - Dynamic #include

I'm trying to figure out how to build a variable string for the #include statement using GCC. The idea is that for each source module I have written, I want to include as a header, a dynamically ...
11
votes
6answers
2k views

Is the backslash acceptable in C and C++ #include directives?

There are two path separators in common use: the Unix forward-slash and the DOS backslash. Rest in peace, Classic Mac colon. If used in an #include directive, are they equal under the rules of the ...
4
votes
1answer
63 views

Initialise aggregate with include directive

Very quick question. I want to copy & paste textual data into the source code from the separate file using include directive. Is it legal? struct Record; // collection of data fields Record rec ...
2
votes
3answers
818 views

How to list all included header files by a c file (preferably in Vim)

Is there a way to see all the header files included by a c file. Lets say a c file contians only one header file, but that header file includes 10 header files, and those 10 include further more ...
5
votes
3answers
549 views

How to see the actual order of include files after preprocessing?

I have one .cpp file that includes a few header files. These header files may include other header files as well. Include guards are in place to prevent including the same file twice. Knowing that ...
5
votes
5answers
548 views

When do you need to use #include in c++

I've been programming for awhile now and one thing I've still never quite figured out is exactly when you need to #include something. I know to be safe you can do it whenever you use something ...
2
votes
4answers
570 views

Limiting Scope of #include Directives

Let's say I have a header file with a class that uses std::string. #include <string> class Foo { std::string Bar; public: // ... } The user of this header file might not ...
2
votes
5answers
361 views

What is the better way of including a header file? #include<> followed by #include“” or the otherwise? [duplicate]

Possible Duplicates: what is the difference between #include <filename> and #include “filename” C/C++ include file order/best practices In what order should the include ...
0
votes
3answers
553 views

Including header file defined by macro

I need to provide configuration file, which will describe which STL header files to include. I have found that usually it is done by defining a lot of HAVE_XXX_HEADER macros. I wonder if there's ...
0
votes
4answers
204 views

C++ Circularly declaring Preprocessor directives? Or defines before includes?

I'm a bit new to C++, so bear with me. I'm trying to figure out where exactly to place my #defines and #includes in my project. I have something like this: main.h #include "other.h" #define ...
6
votes
4answers
5k views

C++: include all files in a directory?

How can one achieve what the following code is trying to do? #include "dir/*"
7
votes
7answers
1k views

#pragma once Versus #if !defined MYHEADER_INCLUDED_ [duplicate]

Possible Duplicate: #pragma once vs include guards? What are the differences (in performance, usability and functionality) in using #pragma once and #if !defined MYHEADER_INCLUDED_ ...
0
votes
2answers
147 views

Cleanest way to store lists of filter coefficients in a C header

I have many (~100 or so) filter coefficients calculated with the aid of some Matlab and Excel that I want to dump into a C header file for general use, but I'm not sure what the best way to do this ...
1
vote
2answers
1k views

CruiseControl.NET Preprocessor 'include' Anomaly

Here's a strange one relating to a combination of the 'define' and 'include' functionality that the CC.NET preprocessor exposes. We're running CCNet 1.4.4.83, and our ccnet.config file is structured ...
3
votes
4answers
257 views

What does the .. in #include “../somefile.h” mean

Does it mean search the previous folder for somefile.h or the project folder for somefile.h?
7
votes
4answers
680 views

Where do I put all these function-like #defines, in C?

I'm working with an embedded system, and I'm ending up with a ton of HW-interfacing #define functions. I want to put all of these into a separate file (for OOP-ness), but I don't know the best way to ...
7
votes
7answers
348 views

Newbie C #include Question

I roughly understand the rules with what #include does with the C preprocessor, but I don't understand it completely. Right now, I have two header files, Move.h and Board.h that both typedef their ...
0
votes
3answers
250 views

Can I expand #include files inline and not expand directives?

I'm trying to simplify the deployment of an application. In order to build the final application on an end-user's machine, a couple of C files need to be compiled. This means that dozens of header ...
1
vote
5answers
751 views

C Programming: Preprocessor, include files from macro

If I could find a way to do something similar to this, I could cut out hundreds of lines of code in my application, and dramatically increase maintainability. Anyone have any ideas? #include ...
3
votes
4answers
409 views

#include directive: difference between “test.h” and “./test.h”

Is there any difference between #include "./test.h" and #include "test.h" for the C/C++ preprocessor?
0
votes
11answers
1k views

Printing the contents of a file using the #include directive (preprocessor)

Say i have a file, t.txt, that contains the following two lines: one two Now, I would like to write a program which will #include that file somehow and print its contents, nothing more. That is, i ...
13
votes
7answers
4k views

C/C++, can you #include a file into a string literal?

I have a C++ source file and a Python source file. I'd like the C++ source file to be able to use the contents of the Python source file as a big string literal. I could do something like this: char* ...
8
votes
6answers
2k views

How to force Visual Studio preprocessor case sensitivity with #includes?

If you have a header file named ThisIsAHeaderFile.h, the following will still locate the file in Visual Studio: #include <ThisIsAheaderFile.h> Is there a way to enforce case sensitivity so ...
1
vote
2answers
512 views

wrapping #includes in #ifndef's - adds any value?

I have inherited C/C++ code base, and in a number of .cpp files the #include directives are wrapped in #ifndef's with the headers internal single include #define. for example #ifndef _INC_WINDOWS ...

1 2