Merge branch 'topic/robin/dynamic-plugins-2.3' into topic/robin/pktsrc

This commit is contained in:
Robin Sommer 2014-01-27 09:31:15 -08:00
commit 191b63e334
279 changed files with 10030 additions and 1258 deletions

View file

@ -31,24 +31,11 @@ public:
*/
~Component();
/**
* XXX
*/
virtual const char* Name() const { return name.c_str(); }
/**
* Generates a human-readable description of the component. This goes
* into the output of \c "bro -NN".
*/
virtual void Describe(ODesc* d) const;
Component& operator=(const Component& other);
protected:
/**
* XXXX
*/
Component(plugin::component::Type type, const std::string& name);
private:
std::string name;
};
}