summaryrefslogtreecommitdiff
path: root/src/derive.h
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2009-03-04 23:53:43 -0400
committerJohn Wiegley <johnw@newartisans.com>2009-03-04 23:53:43 -0400
commitc11d32571246e51f401deee88f4ebd752b467fdc (patch)
treeccfe6c759d1f2f46a501495eeedecc8c679865d7 /src/derive.h
parent9a47298d811496816903515bdba7652e275cc32a (diff)
downloadledger-c11d32571246e51f401deee88f4ebd752b467fdc.tar.gz
ledger-c11d32571246e51f401deee88f4ebd752b467fdc.tar.bz2
ledger-c11d32571246e51f401deee88f4ebd752b467fdc.zip
Reduced the #include dependency tree to a minimum
Diffstat (limited to 'src/derive.h')
-rw-r--r--src/derive.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/derive.h b/src/derive.h
index 9825d496..cf764b10 100644
--- a/src/derive.h
+++ b/src/derive.h
@@ -46,18 +46,20 @@
#ifndef _DERIVE_H
#define _DERIVE_H
-#include "scope.h"
+#include "value.h"
namespace ledger {
+class call_scope_t;
+
value_t xact_command(call_scope_t& args);
value_t template_command(call_scope_t& args);
class xact_t;
class report_t;
xact_t * derive_new_xact(report_t& report,
- value_t::sequence_t::const_iterator i,
- value_t::sequence_t::const_iterator end);
+ value_t::sequence_t::const_iterator i,
+ value_t::sequence_t::const_iterator end);
} // namespace ledger