summaryrefslogtreecommitdiff
path: root/src/scope.h
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2009-02-10 22:37:05 -0400
committerJohn Wiegley <johnw@newartisans.com>2009-02-10 22:37:05 -0400
commit44518bc64066e715c2664ff666a81b857a1b00f9 (patch)
tree64fdcc97128b1582e8378087f1f1154d2e3176e1 /src/scope.h
parentf605e107fcaf8f2f12ec927895eddd72dbe2ea5b (diff)
downloadfork-ledger-44518bc64066e715c2664ff666a81b857a1b00f9.tar.gz
fork-ledger-44518bc64066e715c2664ff666a81b857a1b00f9.tar.bz2
fork-ledger-44518bc64066e715c2664ff666a81b857a1b00f9.zip
Wired up the "entry" command from 2.x, though it still needs to be ported.
Diffstat (limited to 'src/scope.h')
-rw-r--r--src/scope.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/scope.h b/src/scope.h
index 8323f224..42825606 100644
--- a/src/scope.h
+++ b/src/scope.h
@@ -182,6 +182,13 @@ public:
args.pop_back();
}
+ value_t::sequence_t::const_iterator begin() const {
+ return args.begin();
+ }
+ value_t::sequence_t::const_iterator end() const {
+ return args.end();
+ }
+
std::size_t size() const {
return args.size();
}