diff options
author | John Wiegley <johnw@newartisans.com> | 2008-07-29 20:10:03 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2008-07-29 20:10:03 -0400 |
commit | ea27d1b45a5ff975a1e90e3e9f4b74ff8d34056e (patch) | |
tree | 492a147199ad921959f86e8f0b4ec4edc1eeed46 /quotes.cc | |
parent | 200d919fe7c8bcf021011c16fb6ec50821444d5e (diff) | |
download | fork-ledger-ea27d1b45a5ff975a1e90e3e9f4b74ff8d34056e.tar.gz fork-ledger-ea27d1b45a5ff975a1e90e3e9f4b74ff8d34056e.tar.bz2 fork-ledger-ea27d1b45a5ff975a1e90e3e9f4b74ff8d34056e.zip |
Moved around and renamed a very large amount of code in order to rationalize
the way that value expressions extract information from journal objects.
Diffstat (limited to 'quotes.cc')
-rw-r--r-- | quotes.cc | 10 |
1 files changed, 3 insertions, 7 deletions
@@ -1,14 +1,9 @@ #include "quotes.h" -#include "datetime.h" -#include "error.h" -#include "debug.h" - -#include <fstream> -#include <cstdlib> -#include <cstdio> +#include "utils.h" namespace ledger { +#if 0 void quotes_by_script::operator()(commodity_base_t& commodity, const datetime_t& moment, const datetime_t& date, @@ -78,5 +73,6 @@ void quotes_by_script::operator()(commodity_base_t& commodity, commodity.symbol + "\")"); } } +#endif } // namespace ledger |