Loading...
Searching...
No Matches
validatorTokens.h
Go to the documentation of this file.
1//
2// Copyright 2024 Pixar
3//
4// Licensed under the terms set forth in the LICENSE.txt file available at
5// https://openusd.org/license.
6//
7
8#ifndef USD_VALIDATOR_TOKENS_H
9#define USD_VALIDATOR_TOKENS_H
10
12
13#include "pxr/pxr.h"
14#include "pxr/usd/usd/api.h"
16
17PXR_NAMESPACE_OPEN_SCOPE
18
19#define USD_VALIDATOR_NAME_TOKENS \
20 ((compositionErrorTest, "usd:CompositionErrorTest"))
21
22#define USD_VALIDATOR_KEYWORD_TOKENS \
23 (UsdCoreValidators)
24
28TF_DECLARE_PUBLIC_TOKENS(UsdValidatorNameTokens, USD_API,
29 USD_VALIDATOR_NAME_TOKENS);
30
35TF_DECLARE_PUBLIC_TOKENS(UsdValidatorKeywordTokens, USD_API,
36 USD_VALIDATOR_KEYWORD_TOKENS);
37
38PXR_NAMESPACE_CLOSE_SCOPE
39
40#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:81