mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00

This was just done via sed. There's a number of files that don't have a license entry at all.
21 lines
664 B
C++
21 lines
664 B
C++
// See the file "COPYING" in the main distribution directory for copyright.
|
|
|
|
#include "zeek/plugin/Plugin.h"
|
|
|
|
#include "zeek/input/readers/sqlite/SQLite.h"
|
|
|
|
namespace zeek::plugin::detail::Zeek_SQLiteReader {
|
|
|
|
class Plugin : public zeek::plugin::Plugin {
|
|
public:
|
|
zeek::plugin::Configuration Configure() override {
|
|
AddComponent(new zeek::input::Component("SQLite", zeek::input::reader::detail::SQLite::Instantiate));
|
|
|
|
zeek::plugin::Configuration config;
|
|
config.name = "Zeek::SQLiteReader";
|
|
config.description = "SQLite input reader";
|
|
return config;
|
|
}
|
|
} plugin;
|
|
|
|
} // namespace zeek::plugin::detail::Zeek_SQLiteReader
|