| 12345678910111213141516171819 |
- /*
- * author: Patrick-Christopher Mattulat
- * e-mail: webmaster@lynarstudios.com
- */
- #include <test/cycle/mock/WindowApiEventManagerMock.hpp>
- using ls::atlantis::cycle::test::WindowApiEventManagerMock;
- using ls::atlantis::interfaces::IKeyboard;
- using ::std::shared_ptr;
- WindowApiEventManagerMock::WindowApiEventManagerMock() = default;
- WindowApiEventManagerMock::~WindowApiEventManagerMock() = default;
- void WindowApiEventManagerMock::manage(const shared_ptr<IKeyboard> &_keyboard)
- {
- // for mock not needed
- }
|