mirror of
https://github.com/boostorg/python.git
synced 2026-01-19 04:22:16 +00:00
- Added a new function, no_override. When a member function is specified as "no_override", no virtual wrappers are generated for it, improving performance and letting the code more clean. - There was a bug in which the policy of virtual member functions was being ignored (patch by Roman Sulzhyk). [SVN r18814]
9 lines
197 B
Plaintext
9 lines
197 B
Plaintext
A = Template('inherit::A', 'inherit.h')
|
|
A_int = A('int', 'A_int')
|
|
|
|
Class('inherit::B', 'inherit.h')
|
|
Class('inherit::D', 'inherit.h')
|
|
E = Class('inherit::E', 'inherit.h')
|
|
exclude(E.s)
|
|
exclude(E.ab)
|