Files
libart-seafire-representation/art/seafire/representation/concepts.hxx
The Artist f1aaa1f608
All checks were successful
on-push / build-and-test (push) Successful in 58s
Hello libart-seafire-representation
2025-10-18 00:46:15 +02:00

21 lines
545 B
C++

#ifndef art__seafire__representation__concepts_hxx_
#define art__seafire__representation__concepts_hxx_
#include <art/seafire/representation/traits.hxx>
namespace art::seafire::representation
{
template<typename R>
concept BasicRepresentation = traits::is_basic_representation_v<R>;
template<typename R>
concept ContentNegotiableRepresentation = traits::is_content_negotiable_representation_v<R>;
template<typename R>
concept Representation = traits::is_representation_v<R>;
} // namespace art::seafire::representation
#endif