Fledge
An open source edge computing platform for industrial users
notification_python_plugin_handle.h
1 
2 #ifndef _NOTIFICATION_PYTHON_PLUGIN_HANDLE_H
3 #define _NOTIFICATION_PYTHON_PLUGIN_HANDLE_H
4 /*
5  * Fledge Notification Python plugin handle related
6  *
7  * Copyright (c) 2019 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  NotificationPythonPluginHandle(const char *name, const char *path);
27 };
28 
29 #endif
30 
The PythonPluginHandle class is used to represent an interface to a plugin that is available as a pyt...
Definition: notification_python_plugin_handle.h:23
NotificationPythonPluginHandle(const char *name, const char *path)
Constructor for NotificationPythonPluginHandle.
Definition: notification_python_plugin_handle.cpp:28
The PythonPluginHandle class is the base class used to represent an interface to a plugin that is ava...
Definition: python_plugin_handle.h:27