satdump/plugins/cluster_support/main.cpp

16 lines
560 B
C++
Raw Normal View History

2024-01-15 23:50:10 +01:00
#include "core/plugin.h"
#include "logger.h"
#include "cluster/module_cluster_instruments.h"
class CLUSTERSupport : public satdump::Plugin
{
public:
std::string getID() { return "cluster_support"; }
2024-01-15 23:50:10 +01:00
void init() { satdump::eventBus->register_handler<satdump::pipeline::RegisterModulesEvent>(registerPluginsHandler); }
static void registerPluginsHandler(const satdump::pipeline::RegisterModulesEvent &evt) { REGISTER_MODULE_EXTERNAL(evt.modules_registry, cluster::instruments::CLUSTERInstrumentsDecoderModule); }
2024-01-15 23:50:10 +01:00
};
PLUGIN_LOADER(CLUSTERSupport)