1 // Boost.Geometry (aka GGL, Generic Geometry Library)
2 // doxygen_xml2qbk Example
3 
4 // Copyright (c) 2011-2012 Barend Gehrels, Amsterdam, the Netherlands.
5 
6 // Use, modification and distribution is subject to the Boost Software License,
7 // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
8 // http://www.boost.org/LICENSE_1_0.txt)
9 
10 
11 #include <iostream>
12 #include <string>
13 
14 #include "fruit.hpp"
15 
16 
main()17 int main()
18 {
19     fruit::apple<> a("my apple");
20     eat(a);
21 
22     return 0;
23 }
24 
25