StateMachineTypes.hpp 511 B

123456789101112131415161718192021222324252627282930
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2020-09-10
  6. * Changed: 2022-05-12
  7. *
  8. * */
  9. #ifndef LS_STD_STATE_MACHINE_TYPES_HPP
  10. #define LS_STD_STATE_MACHINE_TYPES_HPP
  11. #include <string>
  12. namespace ls
  13. {
  14. namespace std
  15. {
  16. namespace core
  17. {
  18. namespace type
  19. {
  20. using state_connection_id = ::std::string;
  21. using state_id = ::std::string;
  22. }
  23. }
  24. }
  25. }
  26. #endif