mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-24 11:43:05 +01:00
Disallow inheriting of the null and windows mouse/keyboard/pad handlers. These aren't intended to be further extended.
This commit is contained in:
parent
8798b05e1f
commit
26e80a18b4
@ -2,7 +2,7 @@
|
||||
|
||||
#include "Emu/Io/KeyboardHandler.h"
|
||||
|
||||
class NullKeyboardHandler : public KeyboardHandlerBase
|
||||
class NullKeyboardHandler final : public KeyboardHandlerBase
|
||||
{
|
||||
public:
|
||||
NullKeyboardHandler()
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
#include "Emu/Io/MouseHandler.h"
|
||||
|
||||
class NullMouseHandler : public MouseHandlerBase
|
||||
class NullMouseHandler final : public MouseHandlerBase
|
||||
{
|
||||
public:
|
||||
NullMouseHandler()
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
#include "Emu/Io/PadHandler.h"
|
||||
|
||||
class NullPadHandler : public PadHandlerBase
|
||||
class NullPadHandler final : public PadHandlerBase
|
||||
{
|
||||
public:
|
||||
NullPadHandler()
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
#include "Emu/Io/KeyboardHandler.h"
|
||||
|
||||
class WindowsKeyboardHandler
|
||||
class WindowsKeyboardHandler final
|
||||
: public wxWindow
|
||||
, public KeyboardHandlerBase
|
||||
{
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
#include "Emu/Io/MouseHandler.h"
|
||||
|
||||
class WindowsMouseHandler
|
||||
class WindowsMouseHandler final
|
||||
: public wxWindow
|
||||
, public MouseHandlerBase
|
||||
{
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
#include "Emu/Io/PadHandler.h"
|
||||
|
||||
class WindowsPadHandler
|
||||
class WindowsPadHandler final
|
||||
: public wxWindow
|
||||
, public PadHandlerBase
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user