TestDataFactory.hpp 538 B

12345678910111213141516171819202122232425262728
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2020-09-16
  6. * Changed: 2022-05-15
  7. *
  8. * */
  9. #ifndef LS_STD_TEST_DATA_FACTORY_HPP
  10. #define LS_STD_TEST_DATA_FACTORY_HPP
  11. #include <ls_std/ls_std_logic.hpp>
  12. namespace ls_std_logic_test
  13. {
  14. class TestDataFactory
  15. {
  16. public:
  17. TestDataFactory() = default;
  18. ~TestDataFactory() = default;
  19. static ls::std::logic::StateMachine createStateMachine();
  20. };
  21. }
  22. #endif