You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

14 lines
230 B

#pragma once
#include "python_bind.h"
#include <pybind11/embed.h>
class __attribute__((visibility("default")))
Plugins {
public:
Plugins();
~Plugins();
void load();
private:
py::detail::embedded_module jucipp_module;
};