Loading...
Searching...
No Matches
boxedContainerTraits.h
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
14PXR_NAMESPACE_OPEN_SCOPE
15
16template <typename T>
18
19template <typename T>
20constexpr inline bool Vdf_IsBoxedContainer = false;
21
22template <typename T>
23constexpr inline bool Vdf_IsBoxedContainer<Vdf_BoxedContainer<T>> = true;
24
25PXR_NAMESPACE_CLOSE_SCOPE
26
27#endif
This simple container stores multiple values that flow through the network as a single data flow elem...