satdump/plugins/himawari_support/main.cpp

16 lines
574 B
C++
Raw Permalink Normal View History

2022-07-11 02:17:20 +02:00
#include "core/plugin.h"
#include "logger.h"
#include "himawaricast/module_himawaricast_data_decoder.h"
class HimawariSupport : public satdump::Plugin
{
public:
std::string getID() { return "himawari_support"; }
2022-07-11 02:17:20 +02:00
void init() { satdump::eventBus->register_handler<satdump::pipeline::RegisterModulesEvent>(registerPluginsHandler); }
2022-07-11 02:17:20 +02:00
static void registerPluginsHandler(const satdump::pipeline::RegisterModulesEvent &evt) { REGISTER_MODULE_EXTERNAL(evt.modules_registry, himawari::himawaricast::HimawariCastDataDecoderModule); }
2022-07-11 02:17:20 +02:00
};
PLUGIN_LOADER(HimawariSupport)