From b31d7a677481b4a09168c43d203bfd6d7badf577 Mon Sep 17 00:00:00 2001 From: Loek Le Blansch Date: Fri, 25 Oct 2024 17:26:20 +0200 Subject: implement mementos snapshots --- Memento.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Memento.h (limited to 'Memento.h') diff --git a/Memento.h b/Memento.h new file mode 100644 index 0000000..0bc6c92 --- /dev/null +++ b/Memento.h @@ -0,0 +1,13 @@ +#pragma once + +#include +#include + +class Memento { +public: + Memento() = default; + virtual ~Memento() = default; +}; + +typedef std::vector> Memories; + -- cgit v1.2.3