thesis version
This commit is contained in:
17
inc/alsk/skeleton/struct/struct.h
Normal file
17
inc/alsk/skeleton/struct/struct.h
Normal file
@ -0,0 +1,17 @@
|
||||
#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
|
Reference in New Issue
Block a user