mirror of
https://github.com/zeek/zeek.git
synced 2025-10-06 00:28:21 +00:00
extensive rewrite of generation & execution of run-time initialization
This commit is contained in:
parent
bc3bf4ea6c
commit
e1a760e674
26 changed files with 3459 additions and 1580 deletions
|
@ -17,18 +17,21 @@
|
|||
#include "zeek/ZeekString.h"
|
||||
#include "zeek/module_util.h"
|
||||
#include "zeek/script_opt/CPP/Func.h"
|
||||
#include "zeek/script_opt/CPP/RuntimeInit.h"
|
||||
#include "zeek/script_opt/CPP/RuntimeInitSupport.h"
|
||||
#include "zeek/script_opt/CPP/RuntimeInits.h"
|
||||
#include "zeek/script_opt/CPP/RuntimeOps.h"
|
||||
#include "zeek/script_opt/CPP/RuntimeVec.h"
|
||||
#include "zeek/script_opt/ScriptOpt.h"
|
||||
|
||||
namespace zeek
|
||||
namespace zeek::detail
|
||||
{
|
||||
|
||||
using BoolValPtr = IntrusivePtr<zeek::BoolVal>;
|
||||
using IntValPtr = IntrusivePtr<zeek::IntVal>;
|
||||
using CountValPtr = IntrusivePtr<zeek::CountVal>;
|
||||
using DoubleValPtr = IntrusivePtr<zeek::DoubleVal>;
|
||||
using StringValPtr = IntrusivePtr<zeek::StringVal>;
|
||||
using TimeValPtr = IntrusivePtr<zeek::TimeVal>;
|
||||
using IntervalValPtr = IntrusivePtr<zeek::IntervalVal>;
|
||||
using PatternValPtr = IntrusivePtr<zeek::PatternVal>;
|
||||
using FuncValPtr = IntrusivePtr<zeek::FuncVal>;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue