29
votes
15answers
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 …
25
votes
11answers
1k views
C/C++: Detecting superfluous #includes?
I often find that the headers section of a file get larger and larger all the time but it never gets smaller. Throughout the life of a source file classes may have moved and been refactored and it's …
22
votes
11answers
2k 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 excessive rules:
…
19
votes
6answers
1k views
what is the difference between #include <filename> and #include “filename”
In the C and C++ programming languages, what is the difference between using angle brackets and using quotes in an include statement.
#include <filename>
#include "filename"
10
votes
13answers
725 views
Is requiring a certain order for #includes in c++ a sign of bad library/header design?
I've used some very large scale systems and never seen a required order, but came across it recently. Does the STL or STD library or even Boost have any cases where certain includes must come in a …
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 …
8
votes
8answers
462 views
#include <> and #include “” [closed]
Possible Duplicate:
what is the difference between #include <filename> and #include “filename”
Is there a fundamental difference between the two #include syntax, apart from …
8
votes
8answers
662 views
Is there a standard #include convention for C++?
This is a rather basic question, but it's one that's bugged me for awhile.
My project has a bunch of .cpp (Implementation) and .hpp (Definition) files.
I find that as I add additional classes and …
8
votes
7answers
537 views
When can you omit the file extension in an #include directive?
I'm playing around with gmock and noticed it contains this line:
#include <tuple>
I would have expected tuple.h.
When is it okay to exclude the extension, and does it give the directive a …
8
votes
2answers
1k views
What is the difference between include and require in Ruby?
My question is similar to this one over here about include and extend.
What's the difference between require and include in Ruby? If I just want to use the methods from a module in my class, should …
8
votes
3answers
1k views
Best Practice: include( or <script src=”
I have minified my javascript and my css.
Now, Which is better?
<script type="text/javascript">
<?
$r = file_get_contents('min.js');
if($r) echo $r;
?>
</script>
OR
…
7
votes
6answers
304 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
4answers
494 views
How do you organise your STL headers?
I am working on a large project that uses the STL and have a question about your preferred way to organise your STL #includes.
Do you prefer to #include each header in the source file it is used. …
7
votes
4answers
3k views
C++ include and import difference
What is the difference between include and import in C++?
6
votes
5answers
281 views
Source file organisation
I am having a bit of trouble organising my source files.
I have my own small, but growing collection of code that I would like to use in various projects. The file and folder layout is something like …
