mirror of
https://github.com/zeek/zeek.git
synced 2025-10-17 05:58:20 +00:00

This type is used by Conn and Analyzer to hold onto timers being added and removed. We don't expect the elements in those lists to maintain an order as the list is being modified.
26 lines
433 B
C++
26 lines
433 B
C++
// See the file "COPYING" in the main distribution directory for copyright.
|
|
|
|
#pragma once
|
|
|
|
#include "List.h"
|
|
|
|
class Expr;
|
|
typedef PList<Expr> expr_list;
|
|
|
|
class ID;
|
|
typedef PList<ID> id_list;
|
|
|
|
class Val;
|
|
typedef PList<Val> val_list;
|
|
|
|
class Stmt;
|
|
typedef PList<Stmt> stmt_list;
|
|
|
|
class BroType;
|
|
typedef PList<BroType> type_list;
|
|
|
|
class Attr;
|
|
typedef PList<Attr> attr_list;
|
|
|
|
class Timer;
|
|
typedef PList<Timer, LIST_UNORDERED> timer_list;
|