StateMachineTypes.hpp 404 B

1234567891011121314151617181920
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2020-09-10
  6. * Changed: 2020-11-06
  7. *
  8. * */
  9. #ifndef LS_STD_STATE_MACHINE_TYPES_HPP
  10. #define LS_STD_STATE_MACHINE_TYPES_HPP
  11. #include <string>
  12. namespace ls_std {
  13. using StateConnectionId = std::string;
  14. using StateId = std::string;
  15. }
  16. #endif