1#pragma once
2
3namespace nn::gfx {
4
5template <typename TType, typename TVersion>
6class ApiVariation {};
7
8template <int T>
9class ApiType {
10 static const int value = T;
11};
12
13template <int T>
14class ApiVersion {
15 static const int value = T;
16};
17
18} // namespace nn::gfx
19