Luna/libluna/include/luna/Badge.h
apio 77887eed80
All checks were successful
continuous-integration/drone/push Build is passing
luna -> libluna
2023-02-27 15:22:39 +01:00

13 lines
180 B
C++

#pragma once
template <class T> struct Badge
{
private:
constexpr Badge() = default;
Badge(const Badge<T>&) = delete;
Badge(Badge<T>&&) = delete;
friend T;
};