diff options
| author | wuesk <wsk@tuta.com> | 2026-09-22 13:30:39 +0200 |
|---|---|---|
| committer | wuesk <wsk@tuta.com> | 2026-09-22 13:30:39 +0200 |
| commit | 72fafe4553e075c040734e31164e50c4cdc7f319 (patch) | |
| tree | 4a58557786185e993c11a5c4c27894333ab84842 /include/guestbook.hpp | |
Diffstat (limited to 'include/guestbook.hpp')
| -rw-r--r-- | include/guestbook.hpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/guestbook.hpp b/include/guestbook.hpp new file mode 100644 index 0000000..bd095dd --- /dev/null +++ b/include/guestbook.hpp @@ -0,0 +1,13 @@ +#pragma once + +#include <string> +#include <vector> + +struct GuestbookEntry +{ + std::string name; + std::string message; +}; + +std::vector<GuestbookEntry> loadGuestbook(); +bool saveGuestbook(const std::vector<GuestbookEntry>& entries);
\ No newline at end of file |
