]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/boost/geometry/geometries/concepts/concept_type.hpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / boost / geometry / geometries / concepts / concept_type.hpp
CommitLineData
1e59de90
TL
1// Boost.Geometry
2
3// Copyright (c) 2021, Oracle and/or its affiliates.
4
5// Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
6
7// Licensed under the Boost Software License version 1.0.
8// http://www.boost.org/users/license.html
9
10#ifndef BOOST_GEOMETRY_GEOMETRIES_CONCEPTS_CONCEPT_TYPE_HPP
11#define BOOST_GEOMETRY_GEOMETRIES_CONCEPTS_CONCEPT_TYPE_HPP
12
13
14#include <boost/geometry/core/static_assert.hpp>
15#include <boost/geometry/core/tag.hpp>
16
17
18namespace boost { namespace geometry { namespace concepts
19{
20
21template <typename Geometry, typename Tag = typename tag<Geometry>::type>
22struct concept_type
23{
24 BOOST_GEOMETRY_STATIC_ASSERT_FALSE("Not implemented for this Tag.", Tag);
25};
26
27
28}}} // namespace boost::geometry::concepts
29
30
31#endif // BOOST_GEOMETRY_GEOMETRIES_CONCEPTS_CONCEPT_TYPE_HPP