alpaka
Abstraction Library for Parallel Kernel Acceleration
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 
7 namespace 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