diff options
author | Juan Manuel Tomás <jtomas1815@gmail.com> | 2020-07-07 17:43:50 -0300 |
---|---|---|
committer | Juan Manuel Tomás <jtomas1815@gmail.com> | 2020-07-07 17:43:50 -0300 |
commit | 2260209d3b09f728f0cbb891f5498a9f0f8e38eb (patch) | |
tree | e3f886518b49bc09eadbb7aa94cee1b37f6cc894 /client.cpp | |
parent | c801730eda827ea2662ef703f694a2abde33f4c0 (diff) | |
download | jet-2260209d3b09f728f0cbb891f5498a9f0f8e38eb.tar.gz jet-2260209d3b09f728f0cbb891f5498a9f0f8e38eb.zip |
Implement tui for client
Diffstat (limited to 'client.cpp')
-rw-r--r-- | client.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -76,4 +76,12 @@ struct Client { target++; } } + + void push() { + cursor.push(args.pop()); + } + + void pop() { + cursor.pop(); + } }; |