alpaka
Abstraction Library for Parallel Kernel Acceleration
Loading...
Searching...
No Matches
InheritFromList.hpp
Go to the documentation of this file.
1/* Copyright 2022 Benjamin Worpitz, Bernhard Manfred Gruber
2 * SPDX-License-Identifier: MPL-2.0
3 */
4
5#pragma once
6
7namespace alpaka::meta
8{
9 template<typename TBaseList>
11
12 template<template<typename...> class TList, typename... TBases>
13 class InheritFromList<TList<TBases...>> : public TBases...
14 {
15 };
16} // namespace alpaka::meta