From 72fafe4553e075c040734e31164e50c4cdc7f319 Mon Sep 17 00:00:00 2001 From: wuesk Date: Tue, 22 Sep 2026 13:30:39 +0200 Subject: initial commit --- include/guestbook.hpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 include/guestbook.hpp (limited to 'include/guestbook.hpp') 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 +#include + +struct GuestbookEntry +{ + std::string name; + std::string message; +}; + +std::vector loadGuestbook(); +bool saveGuestbook(const std::vector& entries); \ No newline at end of file -- cgit v1.2.3