mirror of
https://github.com/uroni/urbackup_backend.git
synced 2025-10-26 11:36:50 +00:00
11 lines
208 B
C++
11 lines
208 B
C++
#pragma once
|
|
|
|
#include "../Interface/PluginMgr.h"
|
|
|
|
class LuaPluginMgr : public IPluginMgr
|
|
{
|
|
public:
|
|
IPlugin *createPluginInstance(str_map ¶ms);
|
|
void destroyPluginInstance(IPlugin *plugin);
|
|
};
|