#include "BPy_Id.h"
#include "BPy_Convert.h"
Go to the source code of this file.
|
| int | Id_Init (PyObject *module) |
| | PyDoc_STRVAR (Id_doc, "Class for representing an object Id.\n" "\n" ".. method:: __init__(brother)\n" " __init__(first=0, second=0)\n" "\n" " Build the Id from two numbers or another :class:`Id` using the copy constructor.\n" "\n" " :arg brother: An Id object.\n" " :type brother: :class:`Id`" " :arg first: The first number.\n" " :type first: int\n" " :arg second: The second number.\n" " :type second: int\n") |
| static int | Id_init (BPy_Id *self, PyObject *args, PyObject *kwds) |
| static void | Id_dealloc (BPy_Id *self) |
| static PyObject * | Id_repr (BPy_Id *self) |
| static PyObject * | Id_RichCompare (BPy_Id *o1, BPy_Id *o2, int opid) |
| | PyDoc_STRVAR (Id_first_doc, "The first number constituting the Id.\n" "\n" ":type: int\n") |
| static PyObject * | Id_first_get (BPy_Id *self, void *) |
| static int | Id_first_set (BPy_Id *self, PyObject *value, void *) |
| | PyDoc_STRVAR (Id_second_doc, "The second number constituting the Id.\n" "\n" ":type: int\n") |
| static PyObject * | Id_second_get (BPy_Id *self, void *) |
| static int | Id_second_set (BPy_Id *self, PyObject *value, void *) |
◆ Id_dealloc()
| void Id_dealloc |
( |
BPy_Id * | self | ) |
|
|
static |
◆ Id_first_get()
| PyObject * Id_first_get |
( |
BPy_Id * | self, |
|
|
void * | ) |
|
static |
◆ Id_first_set()
| int Id_first_set |
( |
BPy_Id * | self, |
|
|
PyObject * | value, |
|
|
void * | ) |
|
static |
◆ Id_Init()
| int Id_Init |
( |
PyObject * | module | ) |
|
◆ Id_init()
| int Id_init |
( |
BPy_Id * | self, |
|
|
PyObject * | args, |
|
|
PyObject * | kwds ) |
|
static |
◆ Id_repr()
| PyObject * Id_repr |
( |
BPy_Id * | self | ) |
|
|
static |
◆ Id_RichCompare()
| PyObject * Id_RichCompare |
( |
BPy_Id * | o1, |
|
|
BPy_Id * | o2, |
|
|
int | opid ) |
|
static |
◆ Id_second_get()
| PyObject * Id_second_get |
( |
BPy_Id * | self, |
|
|
void * | ) |
|
static |
◆ Id_second_set()
| int Id_second_set |
( |
BPy_Id * | self, |
|
|
PyObject * | value, |
|
|
void * | ) |
|
static |
◆ PyDoc_STRVAR() [1/3]
| PyDoc_STRVAR |
( |
Id_doc | , |
|
|
"Class for representing an object Id.\n" "\n" ".. method:: __init__(brother)\n" " __init__(first=0, second=0)\n" "\n" " Build the Id from two numbers or another :class:`Id` using the copy constructor.\n" "\n" " :arg brother: An Id object.\n" " :type brother: :class:`Id`" " :arg first: The first number.\n" " :type first: int\n" " :arg second: The second number.\n" " :type second: int\n" | ) |
◆ PyDoc_STRVAR() [2/3]
| PyDoc_STRVAR |
( |
Id_first_doc | , |
|
|
"The first number constituting the Id.\n" "\n" ":type: int\n" | ) |
◆ PyDoc_STRVAR() [3/3]
| PyDoc_STRVAR |
( |
Id_second_doc | , |
|
|
"The second number constituting the Id.\n" "\n" ":type: int\n" | ) |
◆ BPy_Id_getseters
| PyGetSetDef BPy_Id_getseters[] |
|
static |
Initial value: = {
{nullptr, nullptr, nullptr, nullptr, nullptr}
}
static int Id_second_set(BPy_Id *self, PyObject *value, void *)
static int Id_first_set(BPy_Id *self, PyObject *value, void *)
static PyObject * Id_second_get(BPy_Id *self, void *)
static PyObject * Id_first_get(BPy_Id *self, void *)
Definition at line 149 of file BPy_Id.cpp.
◆ Id_Type