satdump/plugins/landsat_support/main.cpp
2023-02-27 17:47:34 +00:00

26 lines
No EOL
583 B
C++

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