blob: 97d2800c38b59061482201a7838db8f1cbab0f04 [file] [log] [blame]
#ifndef PLUGIN_IF_H
#define PLUGIN_IF_H
#include <QString>
#include <QtPlugin>
/**
* @brief Interface for a plugin
*/
class PluginInterface
{
public:
virtual ~PluginInterface() = default;
/// Initializes the plugin
virtual QString getResource() = 0;
};
Q_DECLARE_INTERFACE(PluginInterface, "demo.PluginInterface")
#endif