Fledge
An open source edge computing platform for industrial users
north_python_plugin_handle.h
1 
2 #ifndef _NORTH_PYTHON_PLUGIN_HANDLE_H
3 #define _NORTH_PYTHON_PLUGIN_HANDLE_H
4 /*
5  * Fledge plugin handle related
6  *
7  * Copyright (c) 2021 Dianomic Systems
8  *
9  * Released under the Apache 2.0 Licence
10  *
11  * Author: Massimiliano Pinto
12  */
13 #include <logger.h>
14 #include <vector>
15 #include <sstream>
16 #include <dlfcn.h>
17 #include <python_plugin_handle.h>
18 
24 {
25  public:
26  NorthPythonPluginHandle(const char *name, const char *path);
27 };
28 
29 #endif
30 
NorthPythonPluginHandle(const char *name, const char *path)
Constructor for NorthPythonPluginHandle.
Definition: north_python_plugin_handle.cpp:31
The NorthPythonPluginHandle class is used to represent an interface to a South plugin that is availab...
Definition: north_python_plugin_handle.h:23
The PythonPluginHandle class is the base class used to represent an interface to a plugin that is ava...
Definition: python_plugin_handle.h:27