// // Copyright 2016 Pixar // // Licensed under the Apache License, Version 2.0 (the "Apache License") // with the following modification; you may not use this file except in // compliance with the Apache License and the following modification to it: // Section 6. Trademarks. is deleted and replaced with: // // 6. Trademarks. This License does not grant permission to use the trade // names, trademarks, service marks, or product names of the Licensor // and its affiliates, except as required to comply with Section 4(c) of // the License and to reproduce the content of the NOTICE file. // // You may obtain a copy of the Apache License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the Apache License with the above modification is // distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY // KIND, either express or implied. See the Apache License for the specific // language governing permissions and limitations under the Apache License. // #ifndef USDVOL_TOKENS_H #define USDVOL_TOKENS_H /// \file usdVol/tokens.h // XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX // // This is an automatically generated file (by usdGenSchema.py). // Do not hand-edit! // // XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX #include "pxr/pxr.h" #include "pxr/usd/usdVol/api.h" #include "pxr/base/tf/staticData.h" #include "pxr/base/tf/token.h" #include PXR_NAMESPACE_OPEN_SCOPE /// \class UsdVolTokensType /// /// \link UsdVolTokens \endlink provides static, efficient /// \link TfToken TfTokens\endlink for use in all public USD API. /// /// These tokens are auto-generated from the module's schema, representing /// property names, for when you need to fetch an attribute or relationship /// directly by name, e.g. UsdPrim::GetAttribute(), in the most efficient /// manner, and allow the compiler to verify that you spelled the name /// correctly. /// /// UsdVolTokens also contains all of the \em allowedTokens values /// declared for schema builtin attributes of 'token' scene description type. /// Use UsdVolTokens like so: /// /// \code /// gprim.GetMyTokenValuedAttr().Set(UsdVolTokens->field); /// \endcode struct UsdVolTokensType { USDVOL_API UsdVolTokensType(); /// \brief "field" /// /// This is the namespace prefix used to specify the fields that make up a volume primitive. const TfToken field; /// \brief "fieldIndex" /// /// UsdVolField3DAsset const TfToken fieldIndex; /// \brief "fieldName" /// /// UsdVolOpenVDBAsset, UsdVolField3DAsset const TfToken fieldName; /// \brief "fieldPurpose" /// /// UsdVolField3DAsset const TfToken fieldPurpose; /// \brief "filePath" /// /// UsdVolFieldAsset const TfToken filePath; /// A vector of all of the tokens listed above. const std::vector allTokens; }; /// \var UsdVolTokens /// /// A global variable with static, efficient \link TfToken TfTokens\endlink /// for use in all public USD API. \sa UsdVolTokensType extern USDVOL_API TfStaticData UsdVolTokens; PXR_NAMESPACE_CLOSE_SCOPE #endif