rosa/inc/alsk/skeleton/struct/struct.h

18 lines
290 B
C
Raw Normal View History

2021-05-10 16:14:24 +00:00
#ifndef ALSK_ALSK_SKELETON_STRUCT_STRUCT_H
#define ALSK_ALSK_SKELETON_STRUCT_STRUCT_H
namespace alsk {
/**
* @brief hold the skeleton structure
*/
template<template<typename...> class T, typename... Ts>
struct S {
template<typename... Params>
using type = T<Params...>;
};
}
#endif