Mark the majority of the analyzer classes as final, where appropriate.

Most of these came from use of the -Wsuggest-final-types flag for gcc.
This commit is contained in:
Tim Wojtulewicz 2020-04-03 16:59:41 -04:00
parent 4035ec7760
commit 485d9d5458
46 changed files with 72 additions and 80 deletions

View file

@ -9,7 +9,7 @@ namespace analyzer { namespace irc {
/**
* \brief Main class for analyzing IRC traffic.
*/
class IRC_Analyzer : public tcp::TCP_ApplicationAnalyzer {
class IRC_Analyzer final : public tcp::TCP_ApplicationAnalyzer {
enum { WAIT_FOR_REGISTRATION, REGISTERED, };
enum { NO_ZIP, ACCEPT_ZIP, ZIP_LOADED, };
public: