12345678910111213141516171819202122232425262728 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2020-09-16
- * Changed: 2022-05-15
- *
- * */
- #ifndef LS_STD_TEST_DATA_FACTORY_HPP
- #define LS_STD_TEST_DATA_FACTORY_HPP
- #include <ls_std/ls_std_logic.hpp>
- namespace ls_std_logic_test
- {
- class TestDataFactory
- {
- public:
- TestDataFactory() = default;
- ~TestDataFactory() = default;
- static ls::std::logic::StateMachine createStateMachine();
- };
- }
- #endif
|