zeek/src/BroList.h
Tim Wojtulewicz 499a3353b5 Change timer_list in BroList to be an unordered list.
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.
2020-04-30 15:23:48 -07:00

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;