C++, removing #include<vector> or #include<string> in class header - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T15:12:26Zhttp://stackoverflow.com/feeds/question/920731http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/920731/c-removing-includevector-or-includestring-in-class-header3C++, removing #include<vector> or #include<string> in class headerbias2009-05-28T13:05:22Z2009-05-28T14:40:53Z
<p>I want to remove, if possible, the includes of both <vector> and <string> from my class header file. Both string and vector are return types of functions declared in the header file.</p>
<p>I was hoping I could do something like:</p>
<pre><code>namespace std {
template <class T>
class vector;
}
</code></pre>
<p>And, declare the vector in the header and include it in the source file.</p>
<p>Is there a reference covering situations where you must include in the header, and situations where you can pull the includes into the source file?</p>
http://stackoverflow.com/questions/920731/c-removing-includevector-or-includestring-in-class-header/920738#92073810Answer by Neil Butterworth for C++, removing #include<vector> or #include<string> in class headerNeil Butterworth2009-05-28T13:07:48Z2009-05-28T13:07:48Z<p>With a very few exceptions, you are not allowed to add things to the std:; namespace. For classes like vector and string, you therefore have no option but to #include the relevant Standard header files.</p>
<p>Also, notice that string is not a class, but a typedef for <code>basic_string<char></code>.</p>
http://stackoverflow.com/questions/920731/c-removing-includevector-or-includestring-in-class-header/920748#9207484Answer by Nikolai N Fetissov for C++, removing #include<vector> or #include<string> in class headerNikolai N Fetissov2009-05-28T13:10:01Z2009-05-28T13:10:01Z<p>Standard containers often have additional default template parameters (allocators, etc.) so this will not work. For example, here's a snippet from GNU implementation:</p>
<pre><code>
template<typename _Tp, typename _Alloc = std::allocator<_Tp> >
class vector : protected _Vector_base<_Tp, _Alloc>
{ ... };
</code></pre>
http://stackoverflow.com/questions/920731/c-removing-includevector-or-includestring-in-class-header/920749#9207494Answer by TomWij for C++, removing #include<vector> or #include<string> in class headerTomWij2009-05-28T13:10:01Z2009-05-28T13:10:01Z<p>This was something I was trying to do earlier too, but this is not possible due to templates.</p>
<p>Please see my question: <a href="http://stackoverflow.com/questions/389957/forward-declaration-of-a-base-class">http://stackoverflow.com/questions/389957/forward-declaration-of-a-base-class</a></p>
<p>As such headers don't change during your development it's not worth optimizing that anyway...</p>
http://stackoverflow.com/questions/920731/c-removing-includevector-or-includestring-in-class-header/920799#9207996Answer by Fred Larson for C++, removing #include<vector> or #include<string> in class headerFred Larson2009-05-28T13:18:40Z2009-05-28T13:18:40Z<p>This won't help for vector or string, but it might be worth mentioning that there is a forward reference header for iostream, called iosfwd.</p>
http://stackoverflow.com/questions/920731/c-removing-includevector-or-includestring-in-class-header/920859#9208593Answer by orsogufo for C++, removing #include<vector> or #include<string> in class headerorsogufo2009-05-28T13:30:52Z2009-05-28T13:59:22Z<p>If string and vector are used only in signatures of non-public members of you class, you could use the PImpl idiom:</p>
<pre><code>// MyClass.h
class MyClassImpl;
class MyClass{
public:
MyClass();
void MyMethod();
private:
MyClassImpl* m_impl;
};
// MyClassImpl.h
#include <vector>
#include <string>
#include <MyClass.h>
class MyClassImpl{
public:
MyClassImpl();
void MyMethod();
protected:
std::vector<std::string> StdMethod();
};
// MyClass.cpp
#include <MyClass.h>
#include <MyClassImpl.h>
void MyClass::MyMethod(){
m_impl->MyMethod();
}
</code></pre>
<p>You are always including vector and string in the header file, but only in the implementation part of your class; files including only MyClass.h will not be pulling in string and vector.</p>
http://stackoverflow.com/questions/920731/c-removing-includevector-or-includestring-in-class-header/920871#9208712Answer by Thomas L Holaday for C++, removing #include<vector> or #include<string> in class headerThomas L Holaday2009-05-28T13:33:05Z2009-05-28T14:18:21Z<h1><strong>WARNING</strong></h1>
<h1><strong>Expect that doing this will cause uproar.</strong></h1>
<p>The language allows you to derive your own classes:</p>
<pre><code>// MyKludges.h
#include <vector>
#include <string>
class KludgeIntVector : public std::vector<int> {
// ...
};
class KludgeDoubleVector : public std::vector<double> {
// ...
};
class KludgeString : public std::string {
// ...
};
</code></pre>
<p>Change your functions to return KludgeString and KludgeIntVector. Since these are no longer templates, you can forward declare them in your header files, and include MyKludges.h in your implementation files.</p>
<p>Strictly speaking, derived classes do not inherit base class constructors, destructors, assignment operators, and friends. You will need to provide (trivial) implementations of any that you're using.</p>
<p><hr /></p>
<pre><code>// LotsOfFunctions.h
// Look, no includes! All forward declared!
class KludgeString;
// 10,000 functions that use neither strings nor vectors
// ...
void someFunction(KludgeString &);
// ...
// Another 10,000 functions that use neither strings nor vectors
// someFunction.cpp
// Implement someFunction in its own compilation unit
// <string> and <vector> arrive on the next line
#include "MyKludges.h"
#include "LotsOfFunctions.h"
void someFunction(KludgeString &k) { k.clear(); }
</code></pre>
http://stackoverflow.com/questions/920731/c-removing-includevector-or-includestring-in-class-header/920876#9208761Answer by xtofl for C++, removing #include<vector> or #include<string> in class headerxtofl2009-05-28T13:34:37Z2009-05-28T13:34:37Z<p>Maybe you would better use the pimpl idiom: it appears to me that you don't want to expose the implementation of your class to client code. If the vector and string objects are aggregated by value, the compiler needs to see their full declarations.</p>
http://stackoverflow.com/questions/920731/c-removing-includevector-or-includestring-in-class-header/920905#9209053Answer by JohnMcG for C++, removing #include<vector> or #include<string> in class headerJohnMcG2009-05-28T13:42:53Z2009-05-28T13:42:53Z<p>Just include the header in any file where you reference an STL collection.</p>
<p>As others have mentioned, there's not a way to reliably forward declare the STL classes, and even if you find one for your particular implementation, it will probably break if you use a different STL implementation.</p>
<p>If the compilation units don't instantiate the classes, it won't make your object files any bigger.</p>
http://stackoverflow.com/questions/920731/c-removing-includevector-or-includestring-in-class-header/920915#92091511Answer by dribeas for C++, removing #include<vector> or #include<string> in class headerdribeas2009-05-28T13:46:54Z2009-05-28T13:46:54Z<p>You cannot safely forward declare STL templates, at least if you want to do it portably and safely. The standard is clear about the minimum requirements for each of the STL element, but leaves room for implemtation extensions that might add extra template parameters <em>as long as those have default values</em>. That is: the standard states that std::vector is a template that takes at least 2 parameters (type and allocator) but can have any number of extra arguments in a standard compliant implementation.</p>
<p>What is the point of not including string and vector headers? Surely whoever is going to use your class must have already included it since it is on your interface.</p>
<p>When you ask about a reference to decide when to include and when to forward declare, my advice would be: include everything that is part of your interface, forward declare internal details.</p>
<p>There are more issues here that plain compilation performance. If you push the include of a type that is in your public (or protected) interface outside of the header you will be creating dependencies on the order of includes. Users must know that they must include <em>string</em> before including your header, so you are giving them one more thing to worry about.</p>
<p>What things should be included in the implementation file: implementation details, loggers, elements that don't affect the interface (the database connectors, file headers), internal implementation details (i.e. using STL algorithms for your implementation does not affect your interface, functors that are created for a simple purpose, utilities...)</p>
http://stackoverflow.com/questions/920731/c-removing-includevector-or-includestring-in-class-header/921021#9210214Answer by Jem for C++, removing #include<vector> or #include<string> in class headerJem2009-05-28T14:05:13Z2009-05-28T14:05:13Z<p>There is no simple obvious way to do it (as others have explained it very well).</p>
<p>However these headers should be seen as being part of the language (really!), so you can let them in your own headers without any problem, nobody will ever complain.</p>
<p>If your concern is compilation speed, I encourage you to use pre-compiled header instead and put these std headers in it (among other things). It will significantly increase your compilation speed.</p>
<p>Sorry the for the "real winner is the one who avoid the fight" kind of answer.</p>
http://stackoverflow.com/questions/920731/c-removing-includevector-or-includestring-in-class-header/921103#9211031Answer by Kristo for C++, removing #include<vector> or #include<string> in class headerKristo2009-05-28T14:22:23Z2009-05-28T14:22:23Z<p>With the exception of adding overloads to <code>std::swap</code> (the only exception I can think of right now), you are generally not allowed to add anything to the <code>std</code> namespace. Even if it were allowed, the actual declaration for <code>std::vector</code> is a lot more complicated than the code in the OP. See <a href="http://stackoverflow.com/questions/920731/c-removing-includevector-or-includestring-in-class-header/920748#920748">Nikolai N Fetissov's answer</a> for an example.</p>
<p>All that aside, you have the additional problem of what your class users are going to do with functions that return a <code>std::vector</code> or <code>std::string</code>. The <a href="http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2798.pdf" rel="nofollow">C++ Standard section 3.10</a> says that functions returning such objects are returning <em>rvalues</em>, and rvalues must be of a complete type. In English, if your users want to do anything with those functions, they'll have to <code>#include <vector></code> or <code><string</code>> anyway. I think it would be easier to <code>#include</code> the headers for them in your <code>.h</code> file and be done with it.</p>
http://stackoverflow.com/questions/920731/c-removing-includevector-or-includestring-in-class-header/921205#9212051Answer by Shane Powell for C++, removing #include<vector> or #include<string> in class headerShane Powell2009-05-28T14:40:53Z2009-05-28T14:40:53Z<p>I assume your objective here is to speed up compile times? Otherwise I'm not sure why you would want to remove them.</p>
<p>Another approach (not pretty but practical) is to use macro guards around the include itself.</p>
<p>e.g.</p>
<pre><code>#ifndef STDLIB_STRING
#include <string>
#define STDLIB_STRING
#endif
</code></pre>
<p>Although this looks messy, on large codebases it does indeed increase the compile times. What we did is create a Visual Studio macro that will automatically generate the guards. We bind the macro to a key for easy coding. Then it just becomes a company coding standard (or habit).</p>
<p>We also do it for our own includes as well.</p>
<p>e.g.</p>
<pre><code>#ifndef UTILITY_DATE_TIME_H
#include "Utility/DateTime.h"
#endif
</code></pre>
<p>Since we have Visual Studio helpers to auto-generate the guards when we create our own header files, we don't need the #define. The macro knows it's a internal include because we always use the </p>
<p><code>#include ""</code> </p>
<p>format for our own includes and </p>
<p><code>#include <></code> </p>
<p>for external includes.</p>
<p>I know it doesn't look pretty but it did speed up our compile times on a largish codebase by over 1/2 hour (from memory).</p>