// For license of this file, see /LICENSE.md. #ifndef PLUGINFACTORY_H #define PLUGINFACTORY_H #include class ServiceEntryPoint; class PluginFactory { public: explicit PluginFactory(); QList loadPlugins() const; private: QStringList pluginPaths() const; QString pluginNameSuffix() const; QString pluginNameWildCard() const; }; #endif // PLUGINFACTORY_H