mirror of
https://github.com/zeek/zeek.git
synced 2025-10-06 08:38:20 +00:00
Revert final keywords for PcapSource and reader/writer backends
This commit is contained in:
parent
485d9d5458
commit
06bb478552
10 changed files with 10 additions and 10 deletions
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
|
||||
namespace input { namespace reader {
|
||||
|
||||
class SQLite final : public ReaderBackend {
|
||||
class SQLite : public ReaderBackend {
|
||||
public:
|
||||
explicit SQLite(ReaderFrontend* frontend);
|
||||
~SQLite() override;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
namespace logging { namespace writer {
|
||||
|
||||
class Ascii final : public WriterBackend {
|
||||
class Ascii : public WriterBackend {
|
||||
public:
|
||||
explicit Ascii(WriterFrontend* frontend);
|
||||
~Ascii() override;
|
||||
|
|
|
@ -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 {};
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
|
||||
namespace logging { namespace writer {
|
||||
|
||||
class SQLite final : public WriterBackend {
|
||||
class SQLite : public WriterBackend {
|
||||
public:
|
||||
explicit SQLite(WriterFrontend* frontend);
|
||||
~SQLite() override;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue