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