mirror of
https://github.com/zeek/zeek.git
synced 2025-10-16 05:28:20 +00:00
26 lines
439 B
C++
26 lines
439 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, ListOrder::UNORDERED> timer_list;
|