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_VALUE_OVERRIDE_H
8 #define PXR_EXEC_EXEC_VALUE_OVERRIDE_H
9 
11 
12 #include "pxr/pxr.h"
13 
14 #include "pxr/exec/exec/valueKey.h"
15 
16 #include "pxr/base/vt/value.h"
17 
18 #include <vector>
19 
20 PXR_NAMESPACE_OPEN_SCOPE
21 
28 {
31 
34 };
35 
36 using ExecValueOverrideVector = std::vector<ExecValueOverride>;
37 
38 PXR_NAMESPACE_CLOSE_SCOPE
39 
40 #endif
Specifies a computed value that should be temporarily overridden with a different value.
Definition: valueOverride.h:27
Specifies a computed value.
Definition: valueKey.h:28
VtValue overrideValue
When exec computes the above value key, it should produce this value.
Definition: valueOverride.h:33
Provides a container which may hold any type, and provides introspection and iteration over array typ...
Definition: value.h:89
ExecValueKey valueKey
Which computed value should be overridden.
Definition: valueOverride.h:30