11 lines
182 B
C++
11 lines
182 B
C++
#pragma once
|
|
|
|
#include <include/api.h>
|
|
#include <include/proxyinterface.h>
|
|
|
|
class PluginHandler
|
|
{
|
|
public:
|
|
bool load(std::string path);
|
|
void loadPlugins(std::string path);
|
|
};
|