Cantera
3.1.0a1
|
Class that holds an owned or weak (borrowed) reference to a Python object. More...
#include <PythonHandle.h>
Class that holds an owned or weak (borrowed) reference to a Python object.
Definition at line 16 of file PythonHandle.h.
Public Member Functions | |
PythonHandle (PyObject *obj, bool weak) | |
Create a handle to hold a Python object. More... | |
PythonHandle (const PythonHandle &)=delete | |
PythonHandle & | operator= (const PythonHandle &)=delete |
void * | get () override |
Get the underlying external object. More... | |
Public Member Functions inherited from ExternalHandle | |
ExternalHandle (const ExternalHandle &)=delete | |
Private Attributes | |
PyObject * | m_obj |
bool | m_weak |
|
inline |
Create a handle to hold a Python object.
obj | The Python object to be held |
weak | true if this is a weak reference to the Python object and this handle is not responsible for deleting the Python object, or false if this handle should own a reference to the Python object |
Definition at line 24 of file PythonHandle.h.
|
inlineoverridevirtual |
Get the underlying external object.
Reimplemented from ExternalHandle.
Definition at line 38 of file PythonHandle.h.