WindowApiEventManagerMock.cpp 516 B

12345678910111213141516171819
  1. /*
  2. * author: Patrick-Christopher Mattulat
  3. * e-mail: webmaster@lynarstudios.com
  4. */
  5. #include <test/cycle/mock/WindowApiEventManagerMock.hpp>
  6. using ls::atlantis::cycle::test::WindowApiEventManagerMock;
  7. using ls::atlantis::interfaces::IKeyboard;
  8. using ::std::shared_ptr;
  9. WindowApiEventManagerMock::WindowApiEventManagerMock() = default;
  10. WindowApiEventManagerMock::~WindowApiEventManagerMock() = default;
  11. void WindowApiEventManagerMock::manage(const shared_ptr<IKeyboard> &_keyboard)
  12. {
  13. // for mock not needed
  14. }