2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-23 05:42:30 +00:00
Files
python/pyste/tests/templates.h
Bruno da Silva de Oliveira d52f0c7d40 - New tests
[SVN r18629]
2003-05-31 21:18:09 +00:00

11 lines
87 B
C++

namespace templates {
template <class T>
struct Point
{
T x;
T y;
};
}