mirror of
https://github.com/zeek/zeek.git
synced 2025-10-10 02:28:21 +00:00
Teach broxygen to generate protocol analyzer plugin reference.
This commit is contained in:
parent
eee16e1177
commit
e56a17102e
12 changed files with 397 additions and 217 deletions
|
@ -523,6 +523,7 @@ protected:
|
|||
class EnumType : public BroType {
|
||||
public:
|
||||
EnumType(const string& arg_name);
|
||||
EnumType(EnumType* e);
|
||||
~EnumType();
|
||||
|
||||
// The value of this name is next internal counter value, starting
|
||||
|
@ -567,6 +568,7 @@ protected:
|
|||
class CommentedEnumType: public EnumType {
|
||||
public:
|
||||
CommentedEnumType(const string& arg_name) : EnumType(arg_name) {}
|
||||
CommentedEnumType(EnumType* e) : EnumType(e) {}
|
||||
~CommentedEnumType();
|
||||
|
||||
void DescribeReST(ODesc* d) const;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue