Tagged Questions

29
votes
16answers
3k views

How should I detect unnecessary #include files in a large C++ project?

I am working on a large C++ project in Visual Studio 2008, and there are a lot of files with unnecessary #include's. Sometimes the #include's are just artifacts and everything will compile fine with …
9
votes
9answers
565 views

Clean up your #include statements?

How do you maintain the #include statements in your C or C++ project? It seems almost inevitable that eventually the set of include statements in a file is either insufficient (but happens to work …
9
votes
7answers
3k views

C++ class header files organization

What are the C++ coding and file organization guidelines you suggest for people who have to deal with lots of interdependent classes spread over several source and header files? I have this situation …
9
votes
11answers
821 views

#include header guard format?

I know it makes little difference to a project but, assuming you use #defined header guards for your C++ code, what format do you use? e.g. assuming a header called foo.hpp: #ifndef __FOO_HPP__ ... …
7
votes
9answers
352 views

C++: When is it acceptable to have code in the header file?

I've been taught to keep class definitions and code separate. However, I've seen situations where people would often include some bits of code in the header, e.g. simple access methods which returns …
7
votes
3answers
277 views

Header message just like at Stack Overflow

Hi, This is the first time I visited stack overflow and I saw a beautiful header message which displays a text and a close button. The header bar is fixed one and is great to get the attention of …
7
votes
7answers
889 views

Tool for adding license headers to source files?

I'm looking for a tool that will, in bulk, add a license header to some source files, some of which already have the header. Is there a tool out there that will insert a header, if it is not already …
6
votes
4answers
1k views

Where does gcc look for C and C++ header files?

On a Unix system, where does gcc look for header files? I spent a little time this morning looking for some system header files, so I thought this would be good information to have here.
6
votes
3answers
5k views

How to declare a structure in a header that is to be used by multiple files in c?

If I have a source.c file and it uses a structure like struct a { int i; struct b { int j; } }; if this structure is to be used by some other file func.c how to do it? …
5
votes
9answers
479 views

What’s the rationale behind headers?

I don't quite understand the point of having a header; it seems to violate the DRY principle! All the information in a header is (can be) contained in the implementation.
5
votes
9answers
225 views

Prepare public header for release

Hi! I'm interested in hearing what routines you have for cleaning up public header files you distribute to customers. Some things I'd like to hear your opinions on are: Comments not meant for …
5
votes
5answers
318 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 …
5
votes
2answers
354 views

Is it possible to tell Safari to repeat a table header on printed pages?

Is it possible to repeat table headers in Safari on every printed page? This code works in Firefox but not in Safari: <table> <thead> <tr> <td>Header1</td> …
5
votes
3answers
777 views

Why does UDP have a length field in the header and TCP does not?

Why does UDP have a length field in the header and TCP does not? I am guessing that the length of the segment in TCP is inferred from the IP header but one should be able to do the same for a UDP …
4
votes
4answers
164 views

DataGridView White Space After Last Column Header

I'm trying to mimic what every other tabular view does with the DataGridView control, but I can't seem to get the headers correct. I want a blank header to the right of all headers, that does not …

1 2 3 4 5 20 next
15 30 50 per page