Loading...
Searching...
No Matches
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
11
12#include "pxr/pxr.h"
13
15
16#include "pxr/base/vt/value.h"
17
18#include <vector>
19
20PXR_NAMESPACE_OPEN_SCOPE
21
28{
31
34};
35
36using ExecUsdValueOverrideVector = std::vector<ExecUsdValueOverride>;
37
38PXR_NAMESPACE_CLOSE_SCOPE
39
40#endif
Specifies a computed value.
Definition: valueKey.h:56
Provides a container which may hold any type, and provides introspection and iteration over array typ...
Definition: value.h:90
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
Specifies a computed value that should be temporarily overridden with a different value.
Definition: valueOverride.h:28