Loading...
Searching...
No Matches
tokens.h
1//
2// Copyright 2019 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_USD_IMAGING_USD_VOL_IMAGING_TOKENS_H
8#define PXR_USD_IMAGING_USD_VOL_IMAGING_TOKENS_H
9
10#include "pxr/pxr.h"
11#include "pxr/usdImaging/usdVolImaging/api.h"
13
14PXR_NAMESPACE_OPEN_SCOPE
15
16#define USDVOLIMAGING_TOKENS \
17 (field3dAsset) \
18 (openvdbAsset)
19
20TF_DECLARE_PUBLIC_TOKENS(UsdVolImagingTokens, USDVOLIMAGING_API, USDVOLIMAGING_TOKENS);
21
22PXR_NAMESPACE_CLOSE_SCOPE
23
24#endif // PXR_USD_IMAGING_USD_VOL_IMAGING_TOKENS_H
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