21
votes
11answers
1k views
Your preferred C/C++ header policy for big projects?
When working on a big C/C++ project, do you have some specific rules regarding the #include within source or header files?
For instance, we can imagine to follow one of these two …
16
votes
10answers
660 views
Organization of C files
I'm used to doing all my coding in one C file. However, I'm working on a project large enough that it becomes impractical to do so. I've been #including them together but I've run …
13
votes
9answers
780 views
Tool to track #include dependencies
Any good suggestions? Input will be the name of a header file and output should be a list (preferably a tree) of all files including it directly or indirectly.
6
votes
4answers
137 views
Compacting Http Headers
Its so happening that my actual data is 1/4 that of the HTTP request header size in bytes.
Is there a way to cut down on the size on the HTTP headers or any other relevant way to …
5
votes
5answers
301 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 sam …
5
votes
3answers
183 views
Smart tool (addin?) for creating class body from header file
Hi,
you probably know this -- you're going to create some nice class, you think about it a little, maybe even draw a little UML here and there and then you're ready for implementa …
4
votes
7answers
230 views
Is it a good idea to put all project headers into one file HEADERS.h?
I talked to my instructor the other day and asked him this question. He told me that I could go for smaller projects, but I'm starting a chess program and I was wondering what Stac …
4
votes
3answers
218 views
can we avoid browser’s “remember password” when a user tries to log in to the system?
Hi
I know that this feature is to enhance user experience (by not retyping their details every time) and users can tweak their browser settings, but is it possible to send some "h …
4
votes
17answers
859 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 heade …
4
votes
4answers
289 views
How do I stop search engines indexing a maintenance page
I need to setup a maintenance page for a website I'm running, e.g. for display when I'm performing site maintenance (scheduled downtime) or if something really breaks and I need to …
4
votes
11answers
670 views
C++ Header order
What order should headers be declared in a header / cpp file? Obviously those that are required by subsequent headers should be earlier and class specific headers should be in cpp …
4
votes
6answers
617 views
How to structure #includes in C
Say I have a C program which is broken to a set of *.c and *.h files. If code from one file uses functions from another file, where should I include the header file? Inside the *.c …
4
votes
9answers
706 views
static variables in an inlined function
I have a function that is declared and defined in a header file. This is a problem all by itself. When that function is not inlined, every translation unit that uses that header ge …
4
votes
8answers
604 views
What do I need for a compliant email header
I am trying to send an email from a site I am building, but it ends up in the yahoo spam folder. It is the email that sends credentials. What can I do to legitimize it?
$header = …
4
votes
4answers
3k views
Decode an UTF8 email header
Hi, I have an email subject of the form:
=?utf-8?B?T3.....?=
The body of the email is utf-8 base64 encoded - and has decoded fine.
I am current using Perl's Email::MIME module t …
