satdump/plugins/mats_support/main.cpp

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

2022-12-04 17:22:03 +01:00
#include "core/plugin.h"
#include "logger.h"
#include "mats/module_mats_instruments.h"
class MATSSupport : public satdump::Plugin
{
public:
std::string getID() { return "mats_support"; }
2022-12-04 17:22:03 +01:00
void init() { satdump::eventBus->register_handler<satdump::pipeline::RegisterModulesEvent>(registerPluginsHandler); }
2022-12-04 17:22:03 +01:00
static void registerPluginsHandler(const satdump::pipeline::RegisterModulesEvent &evt) { REGISTER_MODULE_EXTERNAL(evt.modules_registry, mats::instruments::MATSInstrumentsDecoderModule); }
2022-12-04 17:22:03 +01:00
};
PLUGIN_LOADER(MATSSupport)