Move all Val classes to the zeek namespaces

This commit is contained in:
Tim Wojtulewicz 2020-06-24 16:55:28 -04:00
parent ec9eff0bd5
commit 64332ca22c
265 changed files with 3154 additions and 3086 deletions

View file

@ -2,16 +2,19 @@
#pragma once
#include "zeek-config.h"
#include <sys/types.h>
#include <sys/time.h>
#include <sys/resource.h>
#include <stdint.h>
class Func;
class TableVal;
class Location;
class BroFile;
ZEEK_FORWARD_DECLARE_NAMESPACED(TableVal, zeek);
// Object called by SegmentProfiler when it is done and reports its
// cumulative CPU/memory statistics.
class SegmentStatsReporter {
@ -98,7 +101,7 @@ protected:
void SegmentProfile(const char* name, const Location* loc,
double dtime, int dmem) override;
TableVal* load_samples;
zeek::TableVal* load_samples;
};