FreeCAD

Форк
0
/
pycxx.dox 
35 строк · 1.6 Кб
1
/**
2
   \defgroup PYCXX PyCXX
3
   \ingroup EMBEDDED
4
   \brief C++ facilities to make it easier to write Python extensions
5

6
   CXX/Objects is a set of C++ facilities to make it easier to write 
7
   Python extensions. The chief way in which PyCXX makes it easier to 
8
   write Python extensions is that it greatly increases the probability 
9
   that your program will not make a reference-counting error and will 
10
   not have to continually check error returns from the Python C API. 
11
   CXX/Objects integrates Python with C++ in these ways:
12

13
   C++ exception handling is relied on to detect errors and clean up. 
14
   In a complicated function this is often a tremendous problem when 
15
   writing in C. With PyCXX, we let the compiler keep track of what 
16
   objects need to be dereferenced when an error occurs.
17
   The Standard Template Library (STL) and its many algorithms plug and 
18
   play with Python containers such as lists and tuples.
19
   The optional CXX/Extensions facility allows you to replace the 
20
   clumsy C tables with objects and method calls that define your 
21
   modules and extension objects.
22

23
   PyCXX documentation is split into <a 
24
   HREF="http://cxx.sourceforge.net/PyCXX-Python3.html">Python 3</A> and 
25
   <A HREF="http://cxx.sourceforge.net/PyCXX-Python2.html">Python 2</A> 
26
   versions. The Python 3 documentation is the most accurate.
27

28
   Latest <A HREF="http://cxx.sourceforge.net/README.html">PyCXX 
29
   README</A> file
30

31
   The source code is released under the <A
32
   HREF="https://sourceforge.net/p/cxx/code/HEAD/tree/trunk/CXX/COPYRIGHT">BSD
33
   License</A>.
34

35
 */
36

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.