satdump/plugins/gcom_support/main.cpp

16 lines
No EOL
543 B
C++

#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"; }
void init() { satdump::eventBus->register_handler<satdump::pipeline::RegisterModulesEvent>(registerPluginsHandler); }
static void registerPluginsHandler(const satdump::pipeline::RegisterModulesEvent &evt) { REGISTER_MODULE_EXTERNAL(evt.modules_registry, gcom1::instruments::GCOM1InstrumentsDecoderModule); }
};
PLUGIN_LOADER(GCOMSupport)