PythonMonkey   v1.0.0 (dev)
Loading...
Searching...
No Matches
BoolType.hh
Go to the documentation of this file.
1
11#ifndef PythonMonkey_BoolType_
12#define PythonMonkey_BoolType_
13
14#include <Python.h>
15
19struct BoolType {
20public:
21 static PyObject *getPyObject(long n);
22};
23
24#endif
This struct represents the 'bool' type in Python, which is represented as a 'long' in C++.
Definition BoolType.hh:19
static PyObject * getPyObject(long n)
Definition BoolType.cc:14