summaryrefslogtreecommitdiff
path: root/include/guestbook.hpp
blob: bd095ddea7824183a48a3ee5d4b02aa8013ad944 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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);