mirror of
https://github.com/boostorg/python.git
synced 2026-01-22 05:22:45 +00:00
11 lines
87 B
C++
11 lines
87 B
C++
namespace templates {
|
|
|
|
template <class T>
|
|
struct Point
|
|
{
|
|
T x;
|
|
T y;
|
|
};
|
|
|
|
}
|