summaryrefslogtreecommitdiff
path: root/include/guestbook.hpp
diff options
context:
space:
mode:
authorwuesk <wsk@tuta.com>2026-09-22 13:30:39 +0200
committerwuesk <wsk@tuta.com>2026-09-22 13:30:39 +0200
commit72fafe4553e075c040734e31164e50c4cdc7f319 (patch)
tree4a58557786185e993c11a5c4c27894333ab84842 /include/guestbook.hpp
initial commitHEADmaster
Diffstat (limited to 'include/guestbook.hpp')
-rw-r--r--include/guestbook.hpp13
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