mirror of
https://github.com/zeek/zeek.git
synced 2025-10-10 02:28:21 +00:00
Bugfixes
This commit is contained in:
parent
29fc56105d
commit
ffb4094d36
9 changed files with 35 additions and 40 deletions
|
@ -11,10 +11,11 @@ namespace logging { namespace writer {
|
|||
|
||||
class Ascii : public WriterBackend {
|
||||
public:
|
||||
Ascii();
|
||||
Ascii(WriterFrontend* frontend);
|
||||
~Ascii();
|
||||
|
||||
static WriterBackend* Instantiate() { return new Ascii; }
|
||||
static WriterBackend* Instantiate(WriterFrontend* frontend)
|
||||
{ return new Ascii(frontend); }
|
||||
static string LogExt();
|
||||
|
||||
protected:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue