diff options
| author | Jeff Garzik <[email protected]> | 2011-06-14 02:05:57 -0700 |
|---|---|---|
| committer | Jeff Garzik <[email protected]> | 2011-06-14 02:05:57 -0700 |
| commit | 19ea44208f7c2cf335c654126deb81406036e328 (patch) | |
| tree | b3551e39efea8a96cac2513b08a97a040500168d /src/main.cpp | |
| parent | FormatFullVersion: build fix related to recent translation improvement (diff) | |
| parent | Only include certain boost headers if necessary. (diff) | |
| download | discoin-19ea44208f7c2cf335c654126deb81406036e328.tar.xz discoin-19ea44208f7c2cf335c654126deb81406036e328.zip | |
Merge pull request #226 from jordanlewis/betterheaders
Optimize header dependencies; improve Makefile dependency graph
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp index 0456041ee..108842f3a 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -2,7 +2,11 @@ // 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 "net.h" +#include "init.h" #include "cryptopp/sha.h" +#include <boost/filesystem/fstream.hpp> using namespace std; using namespace boost; |