diff options
| author | krolxon <krolyxon@tutanota.com> | 2024-02-17 20:45:28 +0530 |
|---|---|---|
| committer | krolxon <krolyxon@tutanota.com> | 2024-02-17 20:45:28 +0530 |
| commit | 36f19c62c2266973818908a10d7962f055714db2 (patch) | |
| tree | 2ca9ac107e458c48e57aed807be1b708d6c1d060 /src/History.java | |
| parent | 6186556a8424a636fd55ef1d5fe4aabebdbe2c49 (diff) | |
add build script
Diffstat (limited to 'src/History.java')
| -rw-r--r-- | src/History.java | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/History.java b/src/History.java new file mode 100644 index 0000000..ef2807b --- /dev/null +++ b/src/History.java @@ -0,0 +1,17 @@ +import java.util.Vector; + +public class History { + private Vector<String> hist; + + History() { + hist = new Vector<String>(); + } + + public void clearHistory() { + hist.clear(); + } + + public Vector<String> getHistory() { + return hist; + } +} |
