thesis version

This commit is contained in:
2021-05-10 18:14:24 +02:00
commit caf2a692f9
281 changed files with 73182 additions and 0 deletions

View 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