mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
28 lines
516 B
C++
28 lines
516 B
C++
// See the file "COPYING" in the main distribution directory for copyright.
|
|
|
|
#pragma once
|
|
|
|
#include "zeek/List.h"
|
|
|
|
namespace zeek {
|
|
namespace detail {
|
|
|
|
class Expr;
|
|
class ID;
|
|
class Stmt;
|
|
class Attr;
|
|
class Timer;
|
|
|
|
} // namespace detail
|
|
|
|
class Val;
|
|
class Type;
|
|
|
|
using ValPList = PList<Val>;
|
|
using ExprPList = PList<detail::Expr>;
|
|
using IDPList = PList<detail::ID>;
|
|
using TypePList = PList<Type>;
|
|
using AttrPList = PList<detail::Attr>;
|
|
using TimerPList = PList<detail::Timer, ListOrder::UNORDERED>;
|
|
|
|
} // namespace zeek
|