HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
boxedContainerTraits.h
Go to the documentation of this file.
1 //
2 // Copyright 2025 Pixar
3 //
4 // Licensed under the terms set forth in the LICENSE.txt file available at
5 // https://openusd.org/license.
6 //
7 #ifndef PXR_EXEC_VDF_BOXED_CONTAINER_TRAITS_H
8 #define PXR_EXEC_VDF_BOXED_CONTAINER_TRAITS_H
9 
10 #include "pxr/pxr.h"
11 
12 #include <type_traits>
13 
15 
16 template <typename T>
17 class Vdf_BoxedContainer;
18 
19 template <typename T>
20 constexpr inline bool Vdf_IsBoxedContainer = false;
21 
22 template <typename T>
23 constexpr inline bool Vdf_IsBoxedContainer<Vdf_BoxedContainer<T>> = true;
24 
26 
27 #endif
constexpr bool Vdf_IsBoxedContainer
#define PXR_NAMESPACE_OPEN_SCOPE
Definition: pxr.h:73
#define PXR_NAMESPACE_CLOSE_SCOPE
Definition: pxr.h:74