2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-24 18:12:43 +00:00
Files
python/pyste/example/templates.h
Bruno da Silva de Oliveira 29d537571b - Unit tests for the examples
[SVN r17987]
2003-03-19 02:47:29 +00:00

11 lines
96 B
C++

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