Revert final keywords for PcapSource and reader/writer backends

This commit is contained in:
Tim Wojtulewicz 2020-04-08 11:35:18 -07:00
parent 485d9d5458
commit 06bb478552
10 changed files with 10 additions and 10 deletions

View file

@ -33,7 +33,7 @@ struct FieldMapping {
/**
* Reader for structured ASCII files.
*/
class Ascii final : public ReaderBackend {
class Ascii : public ReaderBackend {
public:
explicit Ascii(ReaderFrontend* frontend);
~Ascii() override;

View file

@ -10,7 +10,7 @@ namespace input { namespace reader {
/**
* A benchmark reader to measure performance of the input framework.
*/
class Benchmark final : public ReaderBackend {
class Benchmark : public ReaderBackend {
public:
explicit Benchmark(ReaderFrontend* frontend);
~Benchmark() override;

View file

@ -12,7 +12,7 @@ namespace input { namespace reader {
/**
* Binary mode file reader.
*/
class Binary final : public ReaderBackend {
class Binary : public ReaderBackend {
public:
explicit Binary(ReaderFrontend* frontend);
~Binary() override;

View file

@ -17,7 +17,7 @@ namespace input { namespace reader {
/**
* Reader for Configuration files.
*/
class Config final : public ReaderBackend {
class Config : public ReaderBackend {
public:
explicit Config(ReaderFrontend* frontend);
~Config() override;

View file

@ -15,7 +15,7 @@ namespace input { namespace reader {
* A reader that returns a file (or the output of a command) as a single
* blob.
*/
class Raw final : public ReaderBackend {
class Raw : public ReaderBackend {
public:
explicit Raw(ReaderFrontend* frontend);
~Raw() override;

View file

@ -13,7 +13,7 @@
namespace input { namespace reader {
class SQLite final : public ReaderBackend {
class SQLite : public ReaderBackend {
public:
explicit SQLite(ReaderFrontend* frontend);
~SQLite() override;

View file

@ -13,7 +13,7 @@ extern "C" {
namespace iosource {
namespace pcap {
class PcapSource final : public iosource::PktSrc {
class PcapSource : public iosource::PktSrc {
public:
PcapSource(const std::string& path, bool is_live);
~PcapSource() override;

View file

@ -12,7 +12,7 @@
namespace logging { namespace writer {
class Ascii final : public WriterBackend {
class Ascii : public WriterBackend {
public:
explicit Ascii(WriterFrontend* frontend);
~Ascii() override;

View file

@ -8,7 +8,7 @@
namespace logging { namespace writer {
class None final : public WriterBackend {
class None : public WriterBackend {
public:
explicit None(WriterFrontend* frontend) : WriterBackend(frontend) {}
~None() override {};

View file

@ -13,7 +13,7 @@
namespace logging { namespace writer {
class SQLite final : public WriterBackend {
class SQLite : public WriterBackend {
public:
explicit SQLite(WriterFrontend* frontend);
~SQLite() override;