diff options
author | John Wiegley <johnw@newartisans.com> | 2007-04-23 21:22:24 +0000 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2008-04-13 03:38:31 -0400 |
commit | 9039e728b2015b54dc87da52f450c27683303392 (patch) | |
tree | ac914e05db5dc03f6971cd8c165ee3791a614d18 /option.cc | |
parent | 340dacf118f2f457ffc962cb46e8b3ef59017376 (diff) | |
download | fork-ledger-9039e728b2015b54dc87da52f450c27683303392.tar.gz fork-ledger-9039e728b2015b54dc87da52f450c27683303392.tar.bz2 fork-ledger-9039e728b2015b54dc87da52f450c27683303392.zip |
All system headers (except Boost) now included through system.hh;
also, added support for pre-compiled headers since I'm now using a
centralized resource for system headers.
Diffstat (limited to 'option.cc')
-rw-r--r-- | option.cc | 12 |
1 files changed, 0 insertions, 12 deletions
@@ -1,18 +1,10 @@ #include "option.h" -#include "report.h" -#include "debug.h" -#include "error.h" #if 0 #ifdef USE_BOOST_PYTHON #include "py_eval.h" #endif #endif -#include <iostream> -#include <cstdarg> - -#include "util.h" - #if 0 #ifdef USE_BOOST_PYTHON static ledger::option_t * find_option(const string& name); @@ -225,10 +217,6 @@ void process_arguments(int argc, char ** argv, const bool anywhere, #if 0 #ifdef USE_BOOST_PYTHON -#include <boost/python.hpp> -#include <boost/python/detail/api_placeholder.hpp> -#include <boost/python/suite/indexing/map_indexing_suite.hpp> - using namespace boost::python; using namespace ledger; |