#ifndef ALSK_ALSK_SKELETON_STRUCT_STRUCT_H #define ALSK_ALSK_SKELETON_STRUCT_STRUCT_H namespace alsk { /** * @brief hold the skeleton structure */ template class T, typename... Ts> struct S { template using type = T; }; } #endif