INotifyWindows.cpp 459 B

1234567891011121314151617181920212223242526272829
  1. // Copyright (C) 2009-2021, 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. {
  8. Error INotify::initInternal()
  9. {
  10. // TODO
  11. return Error::NONE;
  12. }
  13. void INotify::destroyInternal()
  14. {
  15. // TODO
  16. }
  17. Error INotify::pollEvents(Bool& modified)
  18. {
  19. // TODO
  20. modified = false;
  21. return Error::NONE;
  22. }
  23. } // end namespace anki