2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-24 06:02:14 +00:00
Files
python/pyste/example/templates.h
Bruno da Silva de Oliveira d4b1b46e63 - Unit tests for the examples
[SVN r17990]
2003-03-19 02:55:30 +00:00

11 lines
96 B
C++

namespace templates {
template <class X, class Y>
struct Point
{
X x;
Y y;
};
}