Ferenc Szontágh
2024-06-25 e5f77bce96abea49d65ff25e41c9ce2dae01c8dc
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