State.hpp 518 B

123456789101112131415161718192021222324252627282930
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2020-09-05
  6. * Changed: 2020-09-05
  7. *
  8. * */
  9. #ifndef LS_STD_STATE_HPP
  10. #define LS_STD_STATE_HPP
  11. #include <memory>
  12. #include <vector>
  13. #include "../base/Class.hpp"
  14. namespace ls_std {
  15. class State : public Class {
  16. public:
  17. State();
  18. ~State() = default;
  19. private:
  20. std::vector<std::shared_ptr<State>> connectedStates {};
  21. };
  22. }
  23. #endif