mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
18 lines
244 B
C++
18 lines
244 B
C++
|
|
#include "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)
|