18 lines
290 B
C
18 lines
290 B
C
|
#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
|