Teach broxygen to generate protocol analyzer plugin reference.

This commit is contained in:
Jon Siwek 2013-06-07 13:21:18 -05:00
parent eee16e1177
commit e56a17102e
12 changed files with 397 additions and 217 deletions

View file

@ -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;