Add TestFrontend documentation and UndoSystem buffer reference update.

- Document `TestFrontend` for programmatic testing, including examples and usage details.
- Add `UpdateBufferReference` to `UndoSystem` to support updating buffer associations.
This commit is contained in:
2025-11-30 02:56:39 -08:00
parent 91bc986e51
commit 8c8e4e59a4
21 changed files with 5889 additions and 2531 deletions

View File

@@ -20,9 +20,9 @@ public:
Buffer &operator=(const Buffer &other);
Buffer(Buffer &&) noexcept = default;
Buffer(Buffer &&other) noexcept;
Buffer &operator=(Buffer &&) noexcept = default;
Buffer &operator=(Buffer &&other) noexcept;
explicit Buffer(const std::string &path);