reactor-c
C Runtime for Lingua Franca
Loading...
Searching...
No Matches
python_tag.h
Go to the documentation of this file.
1
32#ifndef PYTHON_TAG_H
33#define PYTHON_TAG_H
34#include <Python.h>
35#include <structmember.h>
36#include "tag.h"
37
38extern PyTypeObject PyTagType;
39
43typedef struct {
44 PyObject_HEAD tag_t tag;
45} py_tag_t;
46
54
55PyObject* py_lf_tag(PyObject* self, PyObject* args);
56PyObject* py_tag_compare(PyObject* self, PyObject* args);
57
58#endif
PyTypeObject PyTagType
Definition python_tag.c:174
PyObject * py_lf_tag(PyObject *self, PyObject *args)
Definition python_tag.c:41
py_tag_t * convert_C_tag_to_py(tag_t c_tag)
Convert C tag to py_tag_t
Definition python_tag.c:193
PyObject * py_tag_compare(PyObject *self, PyObject *args)
Definition python_tag.c:60
Definition python_tag.h:43
PyObject_HEAD tag_t tag
Definition python_tag.h:44
Definition tag.h:81
Time and tag definitions and functions for Lingua Franca.