1
2
3
4
5
6
7
8
9
10
11
12
13
| #ifndef SAMPLE_PLUGIN_H
| #define SAMPLE_PLUGIN_H
|
| #include "PluginInterface.h"
| #include <iostream>
|
| class SamplePlugin : public IPlugin {
| public:
| void handleMessage(const Command& cmd) override;
| void updateConfig(const nlohmann::json& config) override;
| };
|
| #endif // SAMPLE_PLUGIN_H
|
|