satdump/plugins/gcom_support/main.cpp

16 lines
543 B
C++
Raw Normal View History

2023-01-06 23:12:09 +01:00
#include "core/plugin.h"
#include "logger.h"
#include "gcom1/module_gcom1_instruments.h"
class GCOMSupport : public satdump::Plugin
{
public:
std::string getID() { return "gcom_support"; }
2023-01-06 23:12:09 +01:00
void init() { satdump::eventBus->register_handler<satdump::pipeline::RegisterModulesEvent>(registerPluginsHandler); }
2023-01-06 23:12:09 +01:00
static void registerPluginsHandler(const satdump::pipeline::RegisterModulesEvent &evt) { REGISTER_MODULE_EXTERNAL(evt.modules_registry, gcom1::instruments::GCOM1InstrumentsDecoderModule); }
2023-01-06 23:12:09 +01:00
};
PLUGIN_LOADER(GCOMSupport)