rosa/inc/alsk/skeleton/skeletonbase.h

24 lines
336 B
C
Raw Normal View History

2021-05-10 16:14:24 +00:00
#ifndef ALSK_ALSK_SKELETON_SKELETONBASE_H
#define ALSK_ALSK_SKELETON_SKELETONBASE_H
#include <cstdint>
#include "tags.h"
namespace alsk {
struct SkeletonBase {
using IsSkeleton = tag::SkeletonTag;
constexpr SkeletonBase() noexcept {}
~SkeletonBase() noexcept {}
std::size_t step = 0;
std::size_t parDepth = 0;
};
}
#endif