Skip to content
Snippets Groups Projects
Verified Commit 31fec44f authored by Dr. Felix Tobias Schindler's avatar Dr. Felix Tobias Schindler Committed by René Fritze
Browse files

[functors] add convenience shortcut typedefs

parent fe01bee0
No related branches found
No related tags found
No related merge requests found
...@@ -39,6 +39,9 @@ public: ...@@ -39,6 +39,9 @@ public:
using GridViewType = GL; using GridViewType = GL;
using ElementType = extract_entity_t<GridViewType>; using ElementType = extract_entity_t<GridViewType>;
using GV = GridViewType;
using E = ElementType;
ElementFunctor() = default; ElementFunctor() = default;
virtual ~ElementFunctor() = default; virtual ~ElementFunctor() = default;
...@@ -74,6 +77,10 @@ public: ...@@ -74,6 +77,10 @@ public:
using ElementType = extract_entity_t<GridViewType>; using ElementType = extract_entity_t<GridViewType>;
using IntersectionType = extract_intersection_t<GridViewType>; using IntersectionType = extract_intersection_t<GridViewType>;
using GV = GridViewType;
using E = ElementType;
using I = IntersectionType;
IntersectionFunctor() = default; IntersectionFunctor() = default;
virtual ~IntersectionFunctor() = default; virtual ~IntersectionFunctor() = default;
...@@ -115,6 +122,10 @@ public: ...@@ -115,6 +122,10 @@ public:
using ElementType = extract_entity_t<GridViewType>; using ElementType = extract_entity_t<GridViewType>;
using IntersectionType = extract_intersection_t<GridViewType>; using IntersectionType = extract_intersection_t<GridViewType>;
using GV = GridViewType;
using E = ElementType;
using I = IntersectionType;
ElementAndIntersectionFunctor() = default; ElementAndIntersectionFunctor() = default;
virtual ~ElementAndIntersectionFunctor() = default; virtual ~ElementAndIntersectionFunctor() = default;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment