mirror of
https://github.com/zeek/zeek.git
synced 2025-10-11 02:58:20 +00:00
compiles. sill doesn't do much.
This commit is contained in:
parent
9c8b0dec3b
commit
3654060246
9 changed files with 117 additions and 29 deletions
|
@ -3,6 +3,9 @@
|
|||
#define INPUTREADERASCII_H
|
||||
|
||||
#include "InputReader.h"
|
||||
#include <fstream>
|
||||
#include <iostream>
|
||||
|
||||
|
||||
class InputReaderAscii : public InputReader {
|
||||
public:
|
||||
|
@ -12,8 +15,15 @@ public:
|
|||
static InputReader* Instantiate() { return new InputReaderAscii; }
|
||||
|
||||
protected:
|
||||
|
||||
virtual bool DoInit(string path, int num_fields,
|
||||
const LogField* const * fields);
|
||||
virtual void DoFinish();
|
||||
|
||||
private:
|
||||
|
||||
ifstream* file;
|
||||
string fname;
|
||||
};
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue