#ifndef SAMPLE_PLUGIN_H #define SAMPLE_PLUGIN_H #include "PluginInterface.h" #include class SamplePlugin : public IPlugin { public: void handleMessage(const Command& cmd) override; void updateConfig(const nlohmann::json& config) override; }; #endif // SAMPLE_PLUGIN_H