 |
Fledge
An open source edge computing platform for industrial users
|
1 #ifndef _PYTHON_READING_SET_H_
2 #define _PYTHON_READING_SET_H_
13 #include <reading_set.h>
24 PyObject *
toPython(
bool changeKeys =
false);
26 void setReadingAttr(
Reading* newReading, PyObject *readingList,
bool fillIfMissing);
An asset reading represented as a class.
Definition: reading.h:33
Reading set class.
Definition: reading_set.h:26
PyObject * toPython(bool changeKeys=false)
Convert the ReadingSet to a Python List.
Definition: pythonreadingset.cpp:146
PythonReadingSet(PyObject *pySet)
Construct PythonReadingSet from a python list object that contains a list of readings.
Definition: pythonreadingset.cpp:98
A wrapper class for the ReadingSet class that allows conversion to and from Python objects.
Definition: pythonreadingset.h:20