diff options
author | John Wiegley <johnw@newartisans.com> | 2009-03-04 23:53:43 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-03-04 23:53:43 -0400 |
commit | c11d32571246e51f401deee88f4ebd752b467fdc (patch) | |
tree | ccfe6c759d1f2f46a501495eeedecc8c679865d7 /src/global.h | |
parent | 9a47298d811496816903515bdba7652e275cc32a (diff) | |
download | fork-ledger-c11d32571246e51f401deee88f4ebd752b467fdc.tar.gz fork-ledger-c11d32571246e51f401deee88f4ebd752b467fdc.tar.bz2 fork-ledger-c11d32571246e51f401deee88f4ebd752b467fdc.zip |
Reduced the #include dependency tree to a minimum
Diffstat (limited to 'src/global.h')
-rw-r--r-- | src/global.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/global.h b/src/global.h index dcccb214..2ef5a545 100644 --- a/src/global.h +++ b/src/global.h @@ -38,10 +38,15 @@ #ifndef _GLOBAL_H #define _GLOBAL_H +#include "interactive.h" +#include "option.h" #include "report.h" namespace ledger { +class session_t; +class report_t; + class global_scope_t : public noncopyable, public scope_t { shared_ptr<session_t> session_ptr; |