2
votes
6answers
119 views
How does C++ handle multiple source files?
I'm studying C++ right now, coming from a background in Python, and I'm having some trouble understanding how C++ handles multiple source files. In Python, the import statement fir …
2
votes
3answers
124 views
what’s the differences between .dll , .lib, .h files ?
why in a project should include some *.lib, .h or some other files ? and what are these things used for ?
0
votes
4answers
101 views
C++ header files simple question
Can .h files see what's in each other without being included? I know when I programmed in C before I could use variables in a .h file from other .h files without #include "myfile.h …
0
votes
2answers
71 views
Precompiling standard library header files - C++
In my project several STL headers are used in different files. I read that, putting all these headers into a single header and using that header in my files will allow compilers to …
1
vote
2answers
61 views
Include a .txt file in a .h in C++?
I have a number of places where I need to re-use some template code. Many classes need these items
In a .h could I do something like:
#include <xxx.txt>
and place all of …
0
votes
2answers
51 views
Can’t include dynamic library header file in more than one file?
I have successfully added a dynamic library to a program, but when I try to include the header file in a second file of the project I get errors about class redeclaration. I will a …
31
votes
13answers
664 views
Help a C++ newbie understand his mistakes: header files and cpp files
So I finished my first C++ programming assignment and received my grade. But according to the grading, I lost marks for "including cpp files instead of compiling and linking them". …
0
votes
2answers
54 views
Where can I get these header files?
I'm attempting to compile SndObj, and I need some header files. Which Debian packages do I need to obtain all the missing header files?
Checking for C header file alsa/asoundlib.h …
0
votes
2answers
54 views
Something changed, now 5800 compiler errors from precompiled header
I apparently changed something in an iPhone Xcode project, and now when it precompiles the headers I'm getting
In file included from [...] /Foundation.framework/Headers/Foundation …
0
votes
3answers
316 views
External dependencies / Header files
In a windows MSVC6.0 compiler, if there is a workspace with one project in it, what files would be in the Header Files folder and what files would be in the External Dependencies …
0
votes
0answers
11 views
Programs configured to use dmalloc bail-out citing header file error
Hi,
While trying to compile lynx, I used the 'with-dmalloc' configure option. But compilation aborted, producing this error:
/usr/include/dmalloc.h:460: error: expected identifie …
3
votes
8answers
200 views
Is it a good practice to always create a .cpp for each .h in a C++ project ?
Some classes, like exceptions or templates, only need the header file (.h), often there is no .cpp related to them.
I have seen some projects were (for some classes) there aren't …
0
votes
3answers
56 views
Header file-name as argument
Objective:
I have a list of header files (about 50 of them),
And each header-file has few arrays with constant elements.
I need to write a program to count the elements of the arr …
0
votes
1answer
33 views
Is including resource.h in precompiled header a good idea?
The VS-IDE will write //{{NO_DEPENDENCIES}} to resource header files.
This comment is actually a feature that prevents (unnecessary) rebuilding of cpp files that include the resour …
0
votes
2answers
53 views
VS 2005 doesn’t detect changes in header files of C++ project
Very often, actually most of the times, Visual Studio2005 doesn't detect
that some header included in some CPP file C++ project was changed.
As the consequence, it doesn't recompil …
