satdump/plugins/landsat_support/main.cpp

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

2023-02-27 17:47:34 +00:00
#include "core/plugin.h"
#include "logger.h"
#include "ldcm/module_ldcm_instruments.h"
class LandSatSupport : public satdump::Plugin
{
public:
std::string getID() { return "landsat_support"; }
2023-02-27 17:47:34 +00:00
void init() { satdump::eventBus->register_handler<satdump::pipeline::RegisterModulesEvent>(registerPluginsHandler); }
2023-02-27 17:47:34 +00:00
static void registerPluginsHandler(const satdump::pipeline::RegisterModulesEvent &evt) { REGISTER_MODULE_EXTERNAL(evt.modules_registry, ldcm::instruments::LDCMInstrumentsDecoderModule); }
2023-02-27 17:47:34 +00:00
};
PLUGIN_LOADER(LandSatSupport)