00001 #ifndef SGE_GUI_EVENTS_MOUSE_EXIT_HPP_INCLUDED 00002 #define SGE_GUI_EVENTS_MOUSE_EXIT_HPP_INCLUDED 00003 00004 #include "../types.hpp" 00005 #include "../../export.hpp" 00006 00007 namespace sge 00008 { 00009 namespace gui 00010 { 00011 namespace events 00012 { 00013 class mouse_exit 00014 { 00015 public: 00016 SGE_SYMBOL mouse_exit(point const &); 00017 point const &pos() const { return pos_; } 00018 private: 00019 point const pos_; 00020 }; 00021 } 00022 } 00023 } 00024 00025 #endif
1.5.5