usdrt/scenegraph/usd/usdVol/fieldBase.h
File members: usdrt/scenegraph/usd/usdVol/fieldBase.h
// Copyright (c) 2022-2024, NVIDIA CORPORATION. All rights reserved.
//
// NVIDIA CORPORATION and its licensors retain all intellectual property
// and proprietary rights in and to this software, related documentation
// and any modifications thereto. Any use, reproduction, disclosure or
// distribution of this software and related documentation without an express
// license agreement from NVIDIA CORPORATION is strictly prohibited.
//
// TODO USD COPYRIGHT AS WELL?
#pragma once
// GENERATED FILE DO NOT EDIT
#include "usdrt/scenegraph/usd/usdGeom/xformable.h"
// ===================================================================== //
// Feel free to add custom includes between BEGIN and END CUSTOM INCLUDES
// below this line. It will be preserved by the code generator.
// We are using this instead of the `extraIncludes` in the pxr schema.usda
// files to allow for implementation differences in the custom code.
// ===================================================================== //
// --(BEGIN CUSTOM INCLUDES)--
// --(END CUSTOM INCLUDES)--
#include <omni/core/IObject.h>
#include <usdrt/scenegraph/base/tf/token.h>
#include <usdrt/scenegraph/base/vt/array.h>
#include <usdrt/scenegraph/interface/IRtAttribute.h>
#include <usdrt/scenegraph/interface/IRtPrim.h>
#include <usdrt/scenegraph/interface/IRtPrimRange.h>
#include <usdrt/scenegraph/interface/IRtRelationship.h>
#include <usdrt/scenegraph/interface/IRtStage.h>
#include <usdrt/scenegraph/usd/sdf/path.h>
#include <usdrt/scenegraph/usd/sdf/types.h>
#include <usdrt/scenegraph/usd/sdf/valueTypeName.h>
#include <usdrt/scenegraph/usd/usd/attribute.h>
#include <usdrt/scenegraph/usd/usd/common.h>
#include <usdrt/scenegraph/usd/usd/prim.h>
#include <usdrt/scenegraph/usd/usd/timeCode.h>
namespace usdrt
{
// -------------------------------------------------------------------------- //
// FIELDBASE //
// -------------------------------------------------------------------------- //
class UsdVolFieldBase : public UsdGeomXformable
{
public:
static const UsdSchemaType schemaType = UsdSchemaType::AbstractTyped;
explicit UsdVolFieldBase(const UsdPrim& prim = UsdPrim()) : UsdGeomXformable(prim)
{
}
explicit UsdVolFieldBase(const UsdSchemaBase& schemaObj) : UsdGeomXformable(schemaObj)
{
}
virtual ~UsdVolFieldBase()
{
}
static const TfToken _GetStaticTfType();
private:
/* virtual */
const TfToken _GetTfTypeToken() const override;
// ===================================================================== //
// Feel free to add custom code for the class definition between BEGIN
// and END CUSTOM DECLARATION CODE below this line. It will be preserved by
// the code generator.
// ===================================================================== //
// --(BEGIN CUSTOM DECLARATION CODE)--
// --(END CUSTOM DECLARATION CODE)--
};
inline const TfToken UsdVolFieldBase::_GetStaticTfType()
{
const static TfToken token("UsdVolFieldBase");
return token;
}
/* virtual */
inline const TfToken UsdVolFieldBase::_GetTfTypeToken() const
{
const static TfToken token("UsdVolFieldBase");
return token;
}
} // namespace usdrt
// ===================================================================== //
// Feel free to add custom code below this line. It will be preserved by
// the code generator.
//
// Just remember to wrap code in the appropriate delimiters:
// 'namespace usdrt {', '}'.
// ===================================================================== //
// --(BEGIN CUSTOM CODE)--