HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
valueOverride.h
Go to the documentation of this file.
1 //
2 // Copyright 2026 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_EXEC_USD_VALUE_OVERRIDE_H
8 #define PXR_EXEC_EXEC_USD_VALUE_OVERRIDE_H
9 
10 /// \file
11 
12 #include "pxr/pxr.h"
13 
15 
16 #include "pxr/base/vt/value.h"
17 
18 #include <vector>
19 
21 
22 /// Specifies a computed value that should be temporarily overridden with a
23 /// different value.
24 ///
25 /// \see ExecUsdSystem::ComputeWithOverrides
26 ///
28 {
29  /// Which computed value should be overridden.
31 
32  /// When exec computes the above value key, it should produce this value.
34 };
35 
36 using ExecUsdValueOverrideVector = std::vector<ExecUsdValueOverride>;
37 
39 
40 #endif
std::vector< ExecUsdValueOverride > ExecUsdValueOverrideVector
Definition: valueOverride.h:36
#define PXR_NAMESPACE_OPEN_SCOPE
Definition: pxr.h:73
VtValue overrideValue
When exec computes the above value key, it should produce this value.
Definition: valueOverride.h:33
ExecUsdValueKey valueKey
Which computed value should be overridden.
Definition: valueOverride.h:30
#define PXR_NAMESPACE_CLOSE_SCOPE
Definition: pxr.h:74
Definition: value.h:89