2
0
mirror of https://github.com/boostorg/gil.git synced 2026-02-26 04:42:16 +00:00
Files
gil/test/image/concepts.cpp
Mateusz Łoskot e72e3862c2 Add tests for image_view metafunctions, image and pixel concepts (#236)
Rename test source files xxx_concepts.cpp to concepts.cpp
2019-02-18 21:52:30 +00:00

24 lines
521 B
C++

//
// Copyright 2019 Mateusz Loskot <mateusz at loskot dot net>
//
// Distributed under the Boost Software License, Version 1.0
// See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt
//
#include <boost/gil.hpp>
#include <boost/concept_check.hpp>
#include <array>
namespace gil = boost::gil;
using boost::function_requires;
int main()
{
function_requires<gil::ImageConcept<gil::gray8_image_t>>();
function_requires<gil::ImageConcept<gil::rgb8_image_t>>();
return 0;
}