| http://www.w3.org/ns/prov#value | - Below is a c++ example of a simple plugin interface:class PluginInterface{public: PluginInterface(); virtual ~PluginInterface(); virtual void OnCommandRecieved(CommandClass command) = 0; virtual void init(DesktopServer ServerInstance) = 0; virtual void run() = 0;};Why is communication needed?
|