ShishGL  1.0
A simple modular cross-platform graphics library
Listener.hpp
Go to the documentation of this file.
1 /*============================================================================*/
2 #ifndef SHISHGL_LISTENER_HPP
3 #define SHISHGL_LISTENER_HPP
4 /*============================================================================*/
5 namespace Sh {
6 
7  class Listener {
8  public:
9 
10  virtual ~Listener();
11 
12  protected:
13 
14  friend class Event;
15  friend class EventSystem;
16 
17  };
18 
19 }
20 /*============================================================================*/
21 #endif //SHISHGL_LISTENER_HPP
22 /*============================================================================*/
Sh::Event
Definition: Event.hpp:26
Sh::EventSystem
Definition: EventSystem.hpp:9
Sh
Definition: CoreApplication.hpp:10
Sh::Listener::~Listener
virtual ~Listener()
Definition: Listener.cpp:8
Sh::Listener
Definition: Listener.hpp:7