diff options
author | John Wiegley <johnw@newartisans.com> | 2007-04-30 06:26:38 +0000 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2008-04-13 03:38:33 -0400 |
commit | c8899addfd2deed3d84be2de234681db64987722 (patch) | |
tree | 07f9a5eb603ff4ec83fe18c83083575d2b7a439a /src/ledger.h | |
parent | aa9cc125796711afcaa459898e95527fdae8e912 (diff) | |
download | fork-ledger-c8899addfd2deed3d84be2de234681db64987722.tar.gz fork-ledger-c8899addfd2deed3d84be2de234681db64987722.tar.bz2 fork-ledger-c8899addfd2deed3d84be2de234681db64987722.zip |
Rearranged the sources a bit.
Diffstat (limited to 'src/ledger.h')
-rw-r--r-- | src/ledger.h | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/src/ledger.h b/src/ledger.h new file mode 100644 index 00000000..2122ece3 --- /dev/null +++ b/src/ledger.h @@ -0,0 +1,42 @@ +#ifndef _LEDGER_H +#define _LEDGER_H + +////////////////////////////////////////////////////////////////////// +// +// Ledger Accounting Tool +// +// A command-line tool for general double-entry accounting. +// +// Copyright (c) 2003,2004 John Wiegley <johnw@newartisans.com> +// + +#include <amount.h> +#include <balance.h> +#include <value.h> +#include <xml.h> +#include <xpath.h> +#include <format.h> +#include <quotes.h> + +#include <session.h> +#include <journal.h> +#include <parser.h> +#include <textual.h> +#include <binary.h> +#include <gnucash.h> +#include <qif.h> +#include <ofx.h> + +#include <report.h> +#include <transform.h> + +#include <register.h> + +#if 0 +#include <emacs.h> +#include <csv.h> +#include <derive.h> +#include <reconcile.h> +#endif + +#endif // _LEDGER_H |