diff options
| author | Christian Krinitsin <mail@krinitsin.com> | 2025-03-23 19:09:52 +0100 |
|---|---|---|
| committer | Christian Krinitsin <mail@krinitsin.com> | 2025-03-23 19:09:52 +0100 |
| commit | eef27810ce34d00d1d19a7ac6fbce794df4a9708 (patch) | |
| tree | 834b82942ded2b27ec6a177302cd449c0011dc5a /src/server/hashtable.h | |
| parent | 03ad55130b4f0047eb64d3cc9947b98f0130623e (diff) | |
| download | BT-Programming-Assignment-eef27810ce34d00d1d19a7ac6fbce794df4a9708.tar.gz BT-Programming-Assignment-eef27810ce34d00d1d19a7ac6fbce794df4a9708.zip | |
add server-shutdown with <Ctrl+C>
Diffstat (limited to 'src/server/hashtable.h')
| -rw-r--r-- | src/server/hashtable.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/server/hashtable.h b/src/server/hashtable.h index e09fcd4..dfa9ca3 100644 --- a/src/server/hashtable.h +++ b/src/server/hashtable.h @@ -29,6 +29,12 @@ public: } /** + * @brief Constructs a new Hashtable. + * + */ + HashTable() {} + + /** * @brief Insert a kv-pair into the hashtable. * * @param key The key to determine the bucket. |