diff options
| author | 2021-10-04 17:07:51 +0100 | |
|---|---|---|
| committer | 2021-10-04 17:39:05 +0100 | |
| commit | dec5875aca7a2e0c281388db2f25d195ad9b2a3d (patch) | |
| tree | 0f8f741801677daa23e7f399282b64ecde137ad0 /src/modules/m_callerid.cpp | |
| parent | Mark all message tag provider classes as final. (diff) | |
Apply the final keyword to all module classes where appropriate.
Diffstat (limited to 'src/modules/m_callerid.cpp')
| -rw-r--r-- | src/modules/m_callerid.cpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/modules/m_callerid.cpp b/src/modules/m_callerid.cpp index efbef02f0..455ddeccd 100644 --- a/src/modules/m_callerid.cpp +++ b/src/modules/m_callerid.cpp @@ -74,7 +74,8 @@ class callerid_data } }; -struct CallerIDExtInfo : public ExtensionItem +struct CallerIDExtInfo final + : public ExtensionItem { CallerIDExtInfo(Module* parent) : ExtensionItem(parent, "callerid_data", ExtensionItem::EXT_USER) @@ -329,7 +330,8 @@ public: } }; -class CallerIDAPIImpl : public CallerID::APIBase +class CallerIDAPIImpl final + : public CallerID::APIBase { private: CallerIDExtInfo& ext; @@ -348,7 +350,7 @@ class CallerIDAPIImpl : public CallerID::APIBase } }; -class ModuleCallerID +class ModuleCallerID final : public Module , public CTCTags::EventListener , public ISupport::EventListener |
