├── .clang-format ├── .github └── workflows │ └── main.yml ├── .gitignore ├── LICENSE ├── README.md ├── fsm.h └── tests ├── catch.hpp └── fsm_test.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglimi/cppfsm/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglimi/cppfsm/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglimi/cppfsm/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglimi/cppfsm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglimi/cppfsm/HEAD/README.md -------------------------------------------------------------------------------- /fsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglimi/cppfsm/HEAD/fsm.h -------------------------------------------------------------------------------- /tests/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglimi/cppfsm/HEAD/tests/catch.hpp -------------------------------------------------------------------------------- /tests/fsm_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eglimi/cppfsm/HEAD/tests/fsm_test.cpp --------------------------------------------------------------------------------