DSPRegisterView: Mark classes as final
These aren't intended to be extended upon.
This commit is contained in:
parent
66fd347d2e
commit
2781ae5af1
|
@ -9,7 +9,7 @@
|
||||||
|
|
||||||
#include "Common/CommonTypes.h"
|
#include "Common/CommonTypes.h"
|
||||||
|
|
||||||
class CDSPRegTable : public wxGridTableBase
|
class CDSPRegTable final : public wxGridTableBase
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
CDSPRegTable() = default;
|
CDSPRegTable() = default;
|
||||||
|
@ -30,7 +30,7 @@ private:
|
||||||
DECLARE_NO_COPY_CLASS(CDSPRegTable);
|
DECLARE_NO_COPY_CLASS(CDSPRegTable);
|
||||||
};
|
};
|
||||||
|
|
||||||
class DSPRegisterView : public wxGrid
|
class DSPRegisterView final : public wxGrid
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
DSPRegisterView(wxWindow* parent, wxWindowID id = wxID_ANY);
|
DSPRegisterView(wxWindow* parent, wxWindowID id = wxID_ANY);
|
||||||
|
|
Loading…
Reference in New Issue