Clone of Akilla's ac2d @ https://github.com/deregtd/AC2D

FocusEventsAbstractor.h 336B

123456789101112131415
  1. #ifndef FOCUSEVENTSABSTRACTOR_H
  2. #define FOCUSEVENTSABSTRACTOR_H
  3. #include "Interfaces/IFocusEvents.h"
  4. template< class T >
  5. class FocusEventsAbstractor : public IFocusEvents
  6. {
  7. public:
  8. virtual bool OnGotFocus( IWindow &Window, IWindow *FromWindow ) = 0;
  9. virtual bool OnLostFocus( IWindow &Window, IWindow *ToWindow ) = 0;
  10. };
  11. #endif