2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-22 05:22:45 +00:00
Files
python/pyste/example/templates.h
2003-03-20 04:55:38 +00:00

11 lines
87 B
C++

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