INotifyWindows.cpp 464 B

12345678910111213141516171819202122232425262728
  1. // Copyright (C) 2009-present, Panagiotis Christopoulos Charitos and contributors.
  2. // All rights reserved.
  3. // Code licensed under the BSD License.
  4. // http://www.anki3d.org/LICENSE
  5. #include <AnKi/Util/INotify.h>
  6. namespace anki {
  7. Error INotify::initInternal()
  8. {
  9. // TODO
  10. return Error::kNone;
  11. }
  12. void INotify::destroyInternal()
  13. {
  14. // TODO
  15. }
  16. Error INotify::pollEvents(Bool& modified)
  17. {
  18. // TODO
  19. modified = false;
  20. return Error::kNone;
  21. }
  22. } // end namespace anki