12 lines
323 B
C++
12 lines
323 B
C++
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "serif/discretization/domain/relation/relations.hpp"
|
||
|
|
#include "serif/utils/misc/std_helper/cleaning.hpp"
|
||
|
|
|
||
|
|
namespace serif::discretization::domain::relation {
|
||
|
|
using utils::misc::std_helper::AIsBaseClassOfB;
|
||
|
|
|
||
|
|
template <typename R>
|
||
|
|
concept IsRelation = AIsBaseClassOfB<R, DomainRelation>;
|
||
|
|
}
|