Nix (Dev) 3.5.10
dev - 3.5.10 - 1af9301
Loading...
Searching...
No Matches
IListenerKeyPress.hpp
Go to the documentation of this file.
1#ifndef LIBS_GUI_ILISTENERKEYPRESS_HPP_
2#define LIBS_GUI_ILISTENERKEYPRESS_HPP_
3
5{
6public:
7 IListenerKeyPress() = default;
8 virtual ~IListenerKeyPress() = default;
9 IListenerKeyPress(const IListenerKeyPress &other) = delete;
13
14 virtual void keyPress(CEventCanvasKey *evtCanvasKey) = 0;
15};
16
17#endif /* LIBS_GUI_ILISTENERKEYPRESS_HPP_ */
Definition CEventCanvasKey.hpp:7
Definition IListenerKeyPress.hpp:5
IListenerKeyPress()=default
virtual ~IListenerKeyPress()=default
IListenerKeyPress & operator=(const IListenerKeyPress &other)=delete
IListenerKeyPress & operator=(IListenerKeyPress &&other)=delete
IListenerKeyPress(IListenerKeyPress &&other)=delete
IListenerKeyPress(const IListenerKeyPress &other)=delete
virtual void keyPress(CEventCanvasKey *evtCanvasKey)=0