Loading...
Searching...
No Matches
tokens.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_TOKENS_H
8#define PXR_EXEC_VDF_TOKENS_H
9
11
12#include "pxr/pxr.h"
13
14#include "pxr/exec/vdf/api.h"
15
17
18PXR_NAMESPACE_OPEN_SCOPE
19
20#define VDF_TOKENS \
21 ((empty, "")) \
22 (in) \
23 (out)
24
25TF_DECLARE_PUBLIC_TOKENS(VdfTokens, VDF_API, VDF_TOKENS);
26
27PXR_NAMESPACE_CLOSE_SCOPE
28
29#endif
This file defines some macros that are useful for declaring and using static TfTokens.
#define TF_DECLARE_PUBLIC_TOKENS(...)
Macro to define public tokens.
Definition: staticTokens.h:92