mirror of
				https://github.com/subsurface/subsurface.git
				synced 2025-02-19 22:16:15 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
	
		
			432 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			432 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| // SPDX-License-Identifier: GPL-2.0
 | |
| #ifndef PLUGINMANAGER_H
 | |
| #define PLUGINMANAGER_H
 | |
| 
 | |
| #include <QObject>
 | |
| 
 | |
| #include "isocialnetworkintegration.h"
 | |
| 
 | |
| class PluginManager {
 | |
| public:
 | |
| 	static PluginManager& instance();
 | |
| 	void loadPlugins();
 | |
| 	QList<ISocialNetworkIntegration*> socialNetworkIntegrationPlugins() const;
 | |
| private:
 | |
| 	PluginManager();
 | |
| 	PluginManager(const PluginManager&);
 | |
| 	PluginManager& operator=(const PluginManager&);
 | |
| };
 | |
| 
 | |
| #endif
 |