1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Add final specifiers in implementation files

This commit is contained in:
Tom Poole 2023-10-06 13:08:34 +01:00
parent aee5a3a45e
commit 6bf9bb9a2e
315 changed files with 1031 additions and 1025 deletions

View file

@ -197,7 +197,7 @@ namespace juce::build_tools
};
//==============================================================================
struct ProjectType_GUIApp : public ProjectType
struct ProjectType_GUIApp final : public ProjectType
{
ProjectType_GUIApp() : ProjectType (getTypeName(), "GUI Application") {}
@ -206,7 +206,7 @@ namespace juce::build_tools
bool supportsTargetType (Target::Type targetType) const override { return (targetType == Target::GUIApp); }
};
struct ProjectType_ConsoleApp : public ProjectType
struct ProjectType_ConsoleApp final : public ProjectType
{
ProjectType_ConsoleApp() : ProjectType (getTypeName(), "Console Application") {}
@ -215,7 +215,7 @@ namespace juce::build_tools
bool supportsTargetType (Target::Type targetType) const override { return (targetType == Target::ConsoleApp); }
};
struct ProjectType_StaticLibrary : public ProjectType
struct ProjectType_StaticLibrary final : public ProjectType
{
ProjectType_StaticLibrary() : ProjectType (getTypeName(), "Static Library") {}
@ -233,7 +233,7 @@ namespace juce::build_tools
bool supportsTargetType (Target::Type targetType) const override { return (targetType == Target::DynamicLibrary); }
};
struct ProjectType_AudioPlugin : public ProjectType
struct ProjectType_AudioPlugin final : public ProjectType
{
ProjectType_AudioPlugin() : ProjectType (getTypeName(), "Audio Plug-in") {}
@ -270,7 +270,7 @@ namespace juce::build_tools
}
};
struct ProjectType_ARAAudioPlugin : public ProjectType
struct ProjectType_ARAAudioPlugin final : public ProjectType
{
ProjectType_ARAAudioPlugin() : ProjectType (getTypeName(), "ARA Audio Plug-in") {}