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