diff options
author | Jeff Garzik <jgarzik@exmulti.com> | 2011-06-14 02:05:57 -0700 |
---|---|---|
committer | Jeff Garzik <jgarzik@exmulti.com> | 2011-06-14 02:05:57 -0700 |
commit | 19ea44208f7c2cf335c654126deb81406036e328 (patch) | |
tree | b3551e39efea8a96cac2513b08a97a040500168d /src/init.cpp | |
parent | c02ec542691baff7517a10ab99bec0cead3ad3ee (diff) | |
parent | 31f293128177e0f53331ddb3f1f5ea22176bf91c (diff) |
Merge pull request #226 from jordanlewis/betterheaders
Optimize header dependencies; improve Makefile dependency graph
Diffstat (limited to 'src/init.cpp')
-rw-r--r-- | src/init.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/init.cpp b/src/init.cpp index 0e2113e7cb..b683e66782 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -2,6 +2,13 @@ // Distributed under the MIT/X11 software license, see the accompanying // file license.txt or http://www.opensource.org/licenses/mit-license.php. #include "headers.h" +#include "db.h" +#include "rpc.h" +#include "net.h" +#include "init.h" +#include "strlcpy.h" +#include <boost/filesystem/fstream.hpp> +#include <boost/interprocess/sync/file_lock.hpp> using namespace std; using namespace boost; |