summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2008-07-22 02:23:45 -0400
committerJohn Wiegley <johnw@newartisans.com>2008-07-22 02:23:45 -0400
commit4bc29e1351faeba56cbfc1146fa1af33eba15f9d (patch)
tree0b7102725c562816a1fc7367601e0026bf3b2bac /config.h
parente41dbc204a5269d89b8909546d44927a58e29675 (diff)
downloadfork-ledger-4bc29e1351faeba56cbfc1146fa1af33eba15f9d.tar.gz
fork-ledger-4bc29e1351faeba56cbfc1146fa1af33eba15f9d.tar.bz2
fork-ledger-4bc29e1351faeba56cbfc1146fa1af33eba15f9d.zip
A great deal of reorganization to restore the old parsing code (since the
newer XML stuff was pulled).
Diffstat (limited to 'config.h')
-rw-r--r--config.h47
1 files changed, 0 insertions, 47 deletions
diff --git a/config.h b/config.h
deleted file mode 100644
index 39404e19..00000000
--- a/config.h
+++ /dev/null
@@ -1,47 +0,0 @@
-#ifndef _CONFIG_H
-#define _CONFIG_H
-
-#include "ledger.h"
-
-namespace ledger {
-
-class config_t
-{
- public:
- path init_file;
- path data_file;
- path cache_file;
- path price_db;
-
- string balance_format;
- string register_format;
- string wide_register_format;
- string plot_amount_format;
- string plot_total_format;
- string print_format;
- string write_hdr_format;
- string write_xact_format;
- string equity_format;
- string prices_format;
- string pricesdb_format;
-
- string date_input_format;
-
- string account;
- string pager;
-
- unsigned long pricing_leeway;
-
- bool download_quotes;
- bool use_cache;
- bool cache_dirty;
- bool debug_mode;
- bool verbose_mode;
- bool trace_mode;
-
- config_t();
-};
-
-} // namespace ledger
-
-#endif // _CONFIG_H