Boost GIL


basic.hpp
1//
2// Copyright 2005-2007 Adobe Systems Incorporated
3//
4// Distributed under the Boost Software License, Version 1.0
5// See accompanying file LICENSE_1_0.txt or copy at
6// http://www.boost.org/LICENSE_1_0.txt
7//
8#ifndef BOOST_GIL_CONCEPTS_BASIC_HPP
9#define BOOST_GIL_CONCEPTS_BASIC_HPP
10
11#include <boost/config.hpp>
12
13#if defined(BOOST_CLANG)
14#pragma clang diagnostic push
15#pragma clang diagnostic ignored "-Wunknown-pragmas"
16#pragma clang diagnostic ignored "-Wunused-local-typedefs"
17#pragma clang diagnostic ignored "-Wuninitialized"
18#endif
19
20#if defined(BOOST_GCC) && (BOOST_GCC >= 40900)
21#pragma GCC diagnostic push
22#pragma GCC diagnostic ignored "-Wunused-local-typedefs"
23#pragma GCC diagnostic ignored "-Wuninitialized"
24#endif
25
26#include <boost/gil/concepts/concept_check.hpp>
27
28#include <type_traits>
29#include <utility> // std::swap
30
31namespace boost { namespace gil {
32
42template <typename T>
44{
45 void constraints()
46 {
47 function_requires<boost::DefaultConstructibleConcept<T>>();
48 }
49};
50
61template <typename T>
63{
64 void constraints()
65 {
66 function_requires<boost::CopyConstructibleConcept<T>>();
67 }
68};
69
80template <typename T>
82{
83 void constraints()
84 {
85 function_requires<boost::AssignableConcept<T>>();
86 }
87};
88
99template <typename T>
101{
102 void constraints()
103 {
104 function_requires<boost::EqualityComparableConcept<T>>();
105 }
106};
107
117template <typename T>
119{
120 void constraints()
121 {
122 using std::swap;
123 swap(x,y);
124 }
125 T x,y;
126};
127
140template <typename T>
142{
143 void constraints()
144 {
145 gil_function_requires< boost::DefaultConstructibleConcept<T>>();
146 gil_function_requires< boost::CopyConstructibleConcept<T>>();
147 gil_function_requires< boost::EqualityComparableConcept<T>>(); // ==, !=
148 gil_function_requires< boost::AssignableConcept<T>>();
149 gil_function_requires< Swappable<T>>();
150 }
151};
152
162template <typename T>
164{
165 void constraints()
166 {
167 using type = typename T::type;
168 }
169};
170
177template <typename T, typename U>
179{
180 void constraints()
181 {
182 static_assert(std::is_same<T, U>::value, "");
183 }
184};
185
186}} // namespace boost::gil
187
188#if defined(BOOST_CLANG)
189#pragma clang diagnostic pop
190#endif
191
192#if defined(BOOST_GCC) && (BOOST_GCC >= 40900)
193#pragma GCC diagnostic pop
194#endif
195
196#endif
defined(BOOST_NO_CXX17_HDR_MEMORY_RESOURCE)
Definition algorithm.hpp:36
Concept of copy assignment requirement.
Definition basic.hpp:82
Concept of copy construction requirement.
Definition basic.hpp:63
Concept of default construction requirement.
Definition basic.hpp:44
Concept of == and != comparability requirement.
Definition basic.hpp:101
Concept for type as metafunction requirement.
Definition basic.hpp:164
Concept for type regularity requirement.
Definition basic.hpp:142
Concept of types equivalence requirement.
Definition basic.hpp:179
Concept of swap operation requirement.
Definition basic.hpp:119