2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-22 17:32:55 +00:00
Files
python/pyste/example/templates.pyste
Bruno da Silva de Oliveira 7d5c453f59 no message
[SVN r17825]
2003-03-12 01:39:28 +00:00

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_')