]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/geometry/doc/src/docutils/tools/doxygen_xml2qbk/sample/src/fruit.cpp
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / geometry / doc / src / docutils / tools / doxygen_xml2qbk / sample / src / fruit.cpp
CommitLineData
7c673cae
FG
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
17int main()
18{
19 fruit::apple<> a("my apple");
20 eat(a);
21
22 return 0;
23}
24