mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2026-01-02 12:17:51 -05:00
Commits squashed, code style and naming changes by Adam Honse <calcprogrammer1@gmail.com>
21 lines
320 B
C++
21 lines
320 B
C++
#pragma once
|
|
|
|
#include "OpenRGBPluginInterface.h"
|
|
#include "ResourceManager.h"
|
|
|
|
#include <QPluginLoader>
|
|
#include <QLabel>
|
|
#include <QtPlugin>
|
|
#include <QDir>
|
|
|
|
#include <string>
|
|
#include <iostream>
|
|
|
|
class PluginManager
|
|
{
|
|
public:
|
|
std::vector<OpenRGBPluginInterface*> ActivePlugins;
|
|
|
|
void ScanAndLoadPlugins();
|
|
};
|