Visual Computing Library  devel
Loading...
Searching...
No Matches
vcl::ImageConcept Concept Reference

A concept representing an Image. More...

#include <vclib/space/core/image.h>

Concept definition

template<typename T>
concept vcl::ImageConcept = std::derived_from<std::remove_cvref_t<T>, Image>
A concept representing an Image.
Definition image.h:148

Detailed Description

A concept representing an Image.

The concept is satisfied when T is a class that instantiates or derives from an Image class.

Template Parameters
TThe type to be tested for conformity to the ImageConcept.