diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-25 17:26:20 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-25 17:26:20 +0200 |
commit | b31d7a677481b4a09168c43d203bfd6d7badf577 (patch) | |
tree | 13550fa7f33d21aea8a7b03981707db2c08fc9a2 /Memento.h | |
parent | c9f5ac8722190efeb58fda1eec9e6160d5204127 (diff) |
implement mementos snapshots
Diffstat (limited to 'Memento.h')
-rw-r--r-- | Memento.h | 13 |
1 files changed, 13 insertions, 0 deletions
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 <vector> +#include <memory> + +class Memento { +public: + Memento() = default; + virtual ~Memento() = default; +}; + +typedef std::vector<std::unique_ptr<Memento>> Memories; + |