summaryrefslogtreecommitdiff
path: root/client.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'client.cpp')
-rw-r--r--client.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/client.cpp b/client.cpp
index f99dc5d..85289b6 100644
--- a/client.cpp
+++ b/client.cpp
@@ -76,4 +76,12 @@ struct Client {
target++;
}
}
+
+ void push() {
+ cursor.push(args.pop());
+ }
+
+ void pop() {
+ cursor.pop();
+ }
};