MemViz v1.0.0
C++ Memory Layout Inspector
Loading...
Searching...
No Matches
Macros.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <tuple>
4
38#define MEMVIZ_REGISTER(Type, Tuple) \
39 namespace memviz { \
40 template <> struct MemberInfo<Type> { \
41 using type = decltype(Tuple); \
42 static constexpr auto get() { return Tuple; } \
43 }; \
44 }