mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
18 lines
No EOL
249 B
C++
18 lines
No EOL
249 B
C++
#include "core/plugin.h"
|
|
#include "logger.h"
|
|
|
|
class Sample : public satdump::Plugin
|
|
{
|
|
public:
|
|
std::string getID()
|
|
{
|
|
return "sample";
|
|
}
|
|
|
|
void init()
|
|
{
|
|
logger->info("Sample plugin!");
|
|
}
|
|
};
|
|
|
|
PLUGIN_LOADER(Sample) |