mirror of
https://github.com/zeek/zeek.git
synced 2025-10-09 01:58:20 +00:00
FileAnalysis: change terminology s/action/analyzer
This commit is contained in:
parent
e81f2ae7b0
commit
b8c98b8bf7
30 changed files with 575 additions and 570 deletions
|
@ -5,17 +5,17 @@
|
|||
|
||||
#include "Val.h"
|
||||
#include "File.h"
|
||||
#include "Action.h"
|
||||
#include "Analyzer.h"
|
||||
|
||||
namespace file_analysis {
|
||||
|
||||
/**
|
||||
* An action to simply extract files to disk.
|
||||
* An analyzer to extract files to disk.
|
||||
*/
|
||||
class Extract : public Action {
|
||||
class Extract : public file_analysis::Analyzer {
|
||||
public:
|
||||
|
||||
static Action* Instantiate(RecordVal* args, File* file);
|
||||
static file_analysis::Analyzer* Instantiate(RecordVal* args, File* file);
|
||||
|
||||
virtual ~Extract();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue