#ifndef seafire__representation__concepts_hxx_ #define seafire__representation__concepts_hxx_ #include namespace seafire::representation { template concept BasicRepresentation = traits::is_basic_representation_v; template concept ContentNegotiableRepresentation = traits::is_content_negotiable_representation_v; template concept Representation = traits::is_representation_v; } // namespace seafire::representation #endif