PythonMonkey   v1.0.0 (dev)
Loading...
Searching...
No Matches
NoneType.hh
Go to the documentation of this file.
1
11#ifndef PythonMonkey_NoneType_
12#define PythonMonkey_NoneType_
13
14#include <Python.h>
15
19struct NoneType {
20public:
21 static PyObject *getPyObject();
22
23};
24
25#endif
This struct represents the 'None' type in Python.
Definition NoneType.hh:19
static PyObject * getPyObject()
Definition NoneType.cc:13