Skip to content

Latest commit

 

History

History
12 lines (7 loc) · 561 Bytes

File metadata and controls

12 lines (7 loc) · 561 Bytes

StateManager

A library for managing various states (a state machine).

Description

StateManager is a library that provides easy and efficient management of different states for various applications (ex: robotics). It allows you to add, remove, and configurate various states and manage how they transition between each other. A more common name for this is a state machine.

How to run

Run the following command in the terminal to compile and run the test program: g++ -std=c++11 -o StateManagerTest Test.cpp StateManager.cpp && ./StateManagerTest