Implement majority of Broxygen features delegated to Bro.

Still have to update the Sphinx integration.
This commit is contained in:
Jon Siwek 2013-11-14 14:00:51 -06:00
parent bdd359d58c
commit 4f6d01000a
21 changed files with 1494 additions and 342 deletions

View file

@ -10,6 +10,7 @@
#include "Var.h"
#include "Val.h"
#include "Reporter.h"
#include "broxygen/Manager.h"
namespace plugin {
@ -133,6 +134,7 @@ ComponentManager<T, C>::ComponentManager(const string& arg_module)
tag_enum_type = new EnumType();
::ID* id = install_ID("Tag", module.c_str(), true, true);
add_type(id, tag_enum_type, 0);
broxygen_mgr->Identifier(id);
}
template <class T, class C>