Tagged Questions

Header files are used in certain programming languages (like C or C++) to hold information like function prototypes or structure definitions.

learn more… | top users | synonyms (2)

57
votes
13answers
2k 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". I'm not too clear ...
36
votes
16answers
3k views

Should C++ eliminate header files?

Many languages, such as Java, C#, do not separate declaration from implementation. C# has a concept of partial class, but implementation and declaration still remain in the same file. Why doesn't ...
24
votes
7answers
3k views

Tools to find included headers which are unused?

I know PC-Lint can tell you about headers which are included but not used. Are there any other tools that can do this, preferably on linux? We have a large codebase that through the last 15 years ...
18
votes
7answers
689 views

“using namespace” in c++ headers

In all our c++ courses, all the teachers always put using namespace std; right after the #includes in their .h files. This seems to me to be dangerous since then by including that header in another ...
18
votes
4answers
349 views

Are there tools that help organizing #includes?

Are there any tools that help organizing the #includes that belong at the top of a .c or .h file? I was just wondering because I am reorganizing my code, moving various small function ...
18
votes
11answers
425 views

Where to document functions in C?

I have a C program with multiple files, so I have, for example, stuff.c which implements a few functions, and stuff.h with the function prototypes. How should I go about documenting the functions in ...
12
votes
1answer
149 views

Reorder function in c file based on c header file

Is there any tool to automatically reorder the .c file based on .h? For example, foo.h void function1(); void function2(); void function3(); And foo.c void function2(){} void function1(){} void ...
12
votes
4answers
302 views

C functions without header files

This should be very trivial. I was running through a very basic C program for comparing strings: #include <stdio.h> int strcmp(char *s, char *t); int main() { printf("Returned: %d\n", ...
12
votes
8answers
469 views

Is reducing number of cpp translation units a good idea?

I find that if there are a lot of classes the compilation time is dramatically increased when I use one *.h and one *.cpp file per class. I already use precompiled headers and incremental linking, but ...
11
votes
6answers
458 views

Header file inclusion static analysis tools?

A colleague recently revealed to me that a single source file of ours includes over 3,400 headers during compile time. We have over 1,000 translation units that get compiled in a build, resulting in a ...
11
votes
21answers
3k views

Coding C++ without headers, best practices?

When i first learned c++, I had already coded in many other languages prior to it, which made the prospect of headers really depressing. So far, my solution to coding without header files in c++ has ...
10
votes
1answer
219 views

Will std::swap still be defined by including algorithm in C++0x?

The swap function template was moved from <algorithm> to <utility> in C++0x. Does the former include the latter in C++0x? Or do they both include a common header the defines swap? In ...
10
votes
7answers
927 views

Self-sufficient header files in C/C++

I recently posted a question asking for what actions would constitute the Zen of C++. I received excellent answers, but I could not understand one recommendation: Make header files self-sufficient ...
8
votes
6answers
480 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 ...
8
votes
7answers
489 views

Is programming against interfaces in Java the same concept as using header files in C/C++?

The java code I'm working on at the moment has often a structure like file Controller.java: interface Controller {...} file ControllerImpl.java: class ControllerImpl implements Controller {...} ...
8
votes
6answers
345 views

What is the reason for #pragma once inside header guards?

Just seen this inside <boost/asio.hpp> #ifndef BOOST_ASIO_HPP #define BOOST_ASIO_HPP #if defined(_MSC_VER) && (_MSC_VER >= 1200) # pragma once #endif // defined(_MSC_VER) && ...
7
votes
3answers
239 views

Include File Ordering Strategy

I've seen fairly consistent advice that an implementation file (.cc / .cpp) should include its corresponding class definition file first, before including other header files. But when the topic ...
7
votes
5answers
414 views

Use the keyword class as a variable name in C++

I am having trouble writing C++ code that uses a header file designed for a C file. In particular, the header file used a variable name called class: int BPY_class_validate(const char *class_type, ...
7
votes
2answers
7k views

How can I create C header files

I want to be able to create a collection of functions in a header file that I could #include in one of my C Programs.
7
votes
7answers
508 views

Including header files style - C++

I have a project which has the following directory structure. root --include ----module1 ----module2 --src ----module1 ----module2 So a file say foo.cpp in src/module1 has to include like, ...
7
votes
8answers
506 views

What is the significance of a .h file?

I know that .h file is supposed to have: class declarations, function prototypes, and extern variables (for global variables) But is there some significance of making it a .h file? I tried ...
7
votes
7answers
857 views

Why don't C header files increase the binary's size?

I wrote the following C++ program class MyClass { public: int i; int j; MyClass() {}; }; int main(void) { MyClass inst; inst.i = 1; inst.j = 2; } ...
7
votes
4answers
2k views

Open-source tool to visualize C/C++ header file dependencies?

What I'm looking for is a tool that, given a root source file, outputs a graph of file dependencies (with some customization thrown in, of course, like --maxdepth, etc.)
7
votes
6answers
908 views

C++ include file browser

I have a very large project with tons of convoluted header files that all include each other. There's also a massive number of third-party libraries that it depends on. I'm trying to straighten out ...
7
votes
5answers
1k views

Cost of Including Header Files in Objective-C

This may seem like a really stupid question, but what is the cost of including (actually, calling #import) a header file in Objective-C? I get tired of constantly including the same headers in various ...
6
votes
2answers
157 views

What's NOT in an interface file?

I was under the impression that "A D interface file contains only what an import of the module needs, rather than the whole implementation of that module." To me, that translates to signatures - just ...
6
votes
9answers
365 views

Why is including a header file such an evil thing?

I have seen many explanations on when to use forward declarations over including header files, but few of them go into why it is important to do so. Some of the reasons I have seen include the ...
6
votes
3answers
332 views

Is there a tool to keep my C source files in order?

I have some C source files that are slowly expanding. I tend to keep the prototypes with documentation in the .h file in good order, grouped into relevant functions and types with #pragma mark. The ...
6
votes
3answers
705 views

Why do I see THROW in a C library?

When I do: less /usr/include/stdio.h (which is only a C library - nothing to do with C++) I see __THROW after quite a few function declarations. Also, comments above a few functions say that 'This ...
6
votes
2answers
768 views

When to put C++ function in header file

I've been looking at Boost and various other C++ libraries. The vast majority of Boost is implemented in header files. My question is: under what conditions do you do a header-only implementation ...
6
votes
2answers
2k views

Auto generate header files for a C source file in an IDE

I am trying to use Eclipse and NetBeans for programming in C (not C++). Is there a feature/plugin for them which automatically keeps the source and header files in sync? As in, when I implement a ...
6
votes
12answers
1k views

C++ - What should go into an .h file?

When dividing your code up into multiple files just what exactly should go into an .h file and what should go into a .cpp file?
6
votes
2answers
971 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 ?
6
votes
4answers
1k views

what is winver?

I was looking at some code and they had this line: #define WINVER 0x0501 in stdafx.h file? Why do you need to define WINVER? How does it affect your code? Can someone please explain?
5
votes
4answers
135 views

Have you ever written a header without guards?

I am wondering why C++ compilers don't generate header guards automatically for headers? // Why do I have to write this for every .hpp file I create?!! #ifndef myheader_hpp__ #define myheader_hpp__ ...
5
votes
3answers
92 views

using a function in different .c files (c programming 101)

/me/home/file1.c containes function definition: int mine(int i) { /* some stupidity by me */ } I've declared this function in /me/home/file1.h int mine(int); if I want to use this function ...
5
votes
3answers
168 views

Why does Objective-C use header files instead of one-file classes like Java?

I primarily work in Java and am recently trying to learn Objective-C for Mac and iOS app development. Now, this language is quite different from what I'm used to, pointers, messages, etc, but I seem ...
5
votes
4answers
157 views

How do I use C Headers in a C++ Program?

I am working on a project in Visual Studio 2010 which is to produce a win 32 dll file. The examples I have are C files and the compile and work well. I would like to incorporate some functionality ...
5
votes
6answers
211 views

Good C header style

My C headers usually resemble the following style to avoid multiple inclusion: #ifndef <FILENAME>_H #define <FILENAME>_H // define public data structures / prototypes, macros etc. ...
5
votes
3answers
287 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
8answers
232 views

When should a .c file not have an associated .h file?

Most of the time in C programming it seems that there will be one header file (.h) per code file (.c), for the function prototypes at least. When would it be appropriate to not have a header file for ...
5
votes
1answer
658 views

Unresolved inclusion: <conio.h>. Why?

While running a simple c program I receive an Unresolved inclusion: <conio.h> What am I missing? I am using eclipse on fedora 13. Please help me resolve this problem. If I am missing any ...
5
votes
4answers
448 views

Is this too much code for a header only library?

It seems like I had to inline quite a bit of code here. I'm wondering if it's bad design practice to leave this entirely in a header file like this: #include <list> #include <string> ...
5
votes
7answers
1k views

C++ include header conventions

Suppose I have a file X.h which defines a class X, whose methods are implemented in X.cc. The file X.h includes a file Y.h because it needs Y to define class X. In X.cc, we can refer to Y because X.h ...
5
votes
4answers
552 views

What are the point of header files in C? [closed]

Possible Duplicates: [C] Header per source file. In C++ why have header files and cpp files? C++ - What should go into an .h file? Is the only reason header files exist in C is so a ...
5
votes
4answers
9k views

List of standard header files in C and C++

Where could I find the list of all header files in c/c++? While I am building a library I am getting an error like tree.h not found. I suppose this is a standard header file in c/c++. This raised in ...
5
votes
9answers
3k views

How can I parse a C header file with Perl?

I have a header file in which there is a large struct. I need to read this structure using some program and make some operations on each member of the structure and write them back. For example I ...
5
votes
5answers
6k views

Best practices for use of C++ header files

I have the following doubts on header files usage. 1 - Include guards placing after comments /* Copyright Note and licence information (multiple lines) */ #ifndef FOO_H #define FOO_H // Header file ...
4
votes
4answers
100 views

Do I need .CPP files at all? Use headers only and make everything inline?

GCC 4.6.1, specifically. I am aware that CPP files serve to separate interface from implementation; that's not of interest right now. Looking at this, I don't see any reason not to use only headers ...
4
votes
1answer
50 views

Xcode Not Immediately Recognizing New Classes (iOS)

I've been working with Xcode for about 5 months now and I just recently ran across a problem when I add a new class. If I add a new class, say for example "CustomCell" and I try to import '#import ...

1 2 3 4 5 9