mirror of
https://github.com/zeek/zeek.git
synced 2025-10-13 12:08:20 +00:00
Initial import of svn+ssh:://svn.icir.org/bro/trunk/bro as of r7088
This commit is contained in:
commit
61757ac78b
1383 changed files with 380824 additions and 0 deletions
58
src/BroList.h
Normal file
58
src/BroList.h
Normal file
|
@ -0,0 +1,58 @@
|
|||
// $Id: BroList.h 6219 2008-10-01 05:39:07Z vern $
|
||||
//
|
||||
// See the file "COPYING" in the main distribution directory for copyright.
|
||||
|
||||
#ifndef brolist_h
|
||||
#define brolist_h
|
||||
|
||||
#include "List.h"
|
||||
|
||||
class Expr;
|
||||
declare(PList,Expr);
|
||||
typedef PList(Expr) expr_list;
|
||||
|
||||
class ID;
|
||||
declare(PList,ID);
|
||||
typedef PList(ID) id_list;
|
||||
|
||||
class HashKey;
|
||||
declare(PList,HashKey);
|
||||
typedef PList(HashKey) hash_key_list;
|
||||
|
||||
class Val;
|
||||
declare(PList,Val);
|
||||
typedef PList(Val) val_list;
|
||||
|
||||
class Stmt;
|
||||
declare(PList,Stmt);
|
||||
typedef PList(Stmt) stmt_list;
|
||||
|
||||
class BroType;
|
||||
declare(PList,BroType);
|
||||
typedef PList(BroType) type_list;
|
||||
|
||||
class TypeDecl;
|
||||
declare(PList,TypeDecl);
|
||||
typedef PList(TypeDecl) type_decl_list;
|
||||
|
||||
class Case;
|
||||
declare(PList,Case);
|
||||
typedef PList(Case) case_list;
|
||||
|
||||
class Attr;
|
||||
declare(PList,Attr);
|
||||
typedef PList(Attr) attr_list;
|
||||
|
||||
class Scope;
|
||||
declare(PList,Scope);
|
||||
typedef PList(Scope) scope_list;
|
||||
|
||||
class Timer;
|
||||
declare(PList,Timer);
|
||||
typedef PList(Timer) timer_list;
|
||||
|
||||
class DNS_Mgr_Request;
|
||||
declare(PList,DNS_Mgr_Request);
|
||||
typedef PList(DNS_Mgr_Request) DNS_mgr_request_list;
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue