summaryrefslogtreecommitdiff
path: root/src/session.h
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2009-10-30 20:50:57 -0400
committerJohn Wiegley <johnw@newartisans.com>2009-10-31 00:09:57 -0400
commit2149a8e773cb8bf84aa803ee12373b4861d03714 (patch)
treed73c7bcde5320125c659a4703cfc8edd074b9c13 /src/session.h
parent63aa8992a81dfaececa4a9b38ba8daf29b57912e (diff)
downloadfork-ledger-2149a8e773cb8bf84aa803ee12373b4861d03714.tar.gz
fork-ledger-2149a8e773cb8bf84aa803ee12373b4861d03714.tar.bz2
fork-ledger-2149a8e773cb8bf84aa803ee12373b4861d03714.zip
Create a --cache option, for using a binary cache
Diffstat (limited to 'src/session.h')
-rw-r--r--src/session.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/session.h b/src/session.h
index 48960745..c1e0243b 100644
--- a/src/session.h
+++ b/src/session.h
@@ -103,6 +103,7 @@ public:
void report_options(std::ostream& out)
{
HANDLER(account_).report(out);
+ HANDLER(cache_).report(out);
HANDLER(download).report(out);
HANDLER(file_).report(out);
HANDLER(input_date_format_).report(out);
@@ -120,6 +121,7 @@ public:
*/
OPTION(session_t, account_); // -a
+ OPTION(session_t, cache_);
OPTION(session_t, download); // -Q
OPTION__