diff options
| author | krolxon <krolyxon@tutanota.com> | 2024-02-16 23:04:13 +0530 |
|---|---|---|
| committer | krolxon <krolyxon@tutanota.com> | 2024-02-16 23:04:13 +0530 |
| commit | 1d11df081f3d0213e7ffc9fd7b2846a8bb9bb5c9 (patch) | |
| tree | 2745052fbe72aa004a274851cf5ce485b2422b71 /History.java | |
| parent | 29eeb5191923e2f1e590b9ad28683f7458e736b5 (diff) | |
GUI: progress
Diffstat (limited to 'History.java')
| -rw-r--r-- | History.java | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/History.java b/History.java new file mode 100644 index 0000000..32b8598 --- /dev/null +++ b/History.java @@ -0,0 +1,16 @@ +import java.util.Vector; + +public class History { + private Vector<String> hist; + + History() { + hist = new Vector<String>(); + } + + public void addHistory(String h) { + hist.add(h); + } + public Vector<String> getHistory() { + return hist; + } +} |
