satdump/plugins/dmsp_support/main.cpp

21 lines
665 B
C++
Raw Normal View History

2022-10-23 03:05:39 +02:00
#include "core/plugin.h"
#include "logger.h"
#include "dmsp/module_dmsp_rtd_decoder.h"
#include "dmsp/module_dmsp_rtd_instruments.h"
class DMSPSupport : public satdump::Plugin
{
public:
std::string getID() { return "dmsp_support"; }
2022-10-23 03:05:39 +02:00
void init() { satdump::eventBus->register_handler<satdump::pipeline::RegisterModulesEvent>(registerPluginsHandler); }
2022-10-23 03:05:39 +02:00
static void registerPluginsHandler(const satdump::pipeline::RegisterModulesEvent &evt)
2022-10-23 03:05:39 +02:00
{
REGISTER_MODULE_EXTERNAL(evt.modules_registry, dmsp::DMSPRTDDecoderModule);
REGISTER_MODULE_EXTERNAL(evt.modules_registry, dmsp::DMSPInstrumentsModule);
}
};
PLUGIN_LOADER(DMSPSupport)