├── .github ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── build.yml ├── CMakeLists.txt ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── tests ├── CMakeLists.txt ├── basics.cpp ├── cmd.h ├── complex_tree.cpp ├── test.h └── tree.cpp ├── undo_command.h ├── undo_history.cpp ├── undo_history.h └── undo_state.h /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/undo/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/undo/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/undo/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/undo/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/undo/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/undo/HEAD/README.md -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/undo/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/basics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/undo/HEAD/tests/basics.cpp -------------------------------------------------------------------------------- /tests/cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/undo/HEAD/tests/cmd.h -------------------------------------------------------------------------------- /tests/complex_tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/undo/HEAD/tests/complex_tree.cpp -------------------------------------------------------------------------------- /tests/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/undo/HEAD/tests/test.h -------------------------------------------------------------------------------- /tests/tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/undo/HEAD/tests/tree.cpp -------------------------------------------------------------------------------- /undo_command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/undo/HEAD/undo_command.h -------------------------------------------------------------------------------- /undo_history.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/undo/HEAD/undo_history.cpp -------------------------------------------------------------------------------- /undo_history.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/undo/HEAD/undo_history.h -------------------------------------------------------------------------------- /undo_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/undo/HEAD/undo_state.h --------------------------------------------------------------------------------