PythonMonkey   v1.1.2 (dev)
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
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