1 /* Copyright Bruno da Silva de Oliveira 2003. Use, modification and
2  distribution is subject to the Boost Software License, Version 1.0.
3  (See accompanying file LICENSE_1_0.txt or copy at
4  http://www.boost.org/LICENSE_1_0.txt)
5  */
6 namespace templates {
7 
8 template <class T>
9 struct Point
10 {
11     T x;
12     T y;
13 };
14 
15 }
16