mirror of
https://github.com/boostorg/python.git
synced 2026-01-19 04:22:16 +00:00
9 lines
204 B
Plaintext
9 lines
204 B
Plaintext
h = AllFromHeader('enums.h')
|
|
rename(h.color.red, 'Red')
|
|
rename(h.color.blue, 'Blue')
|
|
export_values(h.color)
|
|
rename(h.X.choices.bad, 'Bad')
|
|
rename(h.X.choices.good, 'Good')
|
|
rename(h.X.choices, 'Choices')
|
|
|