PythonMonkey   v1.0.0 (dev)
Loading...
Searching...
No Matches
NullType.hh
Go to the documentation of this file.
1
11#ifndef PythonMonkey_NullType_
12#define PythonMonkey_NullType_
13
14#include <Python.h>
15
19struct NullType {
20public:
21 static PyObject *getPyObject();
22};
23
24#endif
This struct represents the JS null type in Python using a singleton object on the pythonmonkey module...
Definition NullType.hh:19
static PyObject * getPyObject()
Definition NullType.cc:15