mirror of
https://github.com/boostorg/python.git
synced 2026-01-22 17:32:55 +00:00
9 lines
191 B
Plaintext
9 lines
191 B
Plaintext
Point = Template('Point', 'templates.h')
|
|
rename(Point.x, 'i')
|
|
rename(Point.y, 'j')
|
|
IPoint = Point('int double')
|
|
FPoint = Point('double int')
|
|
rename(IPoint, 'IPoint')
|
|
rename(IPoint.x, '_x_')
|
|
|