Blender V4.3
id.cc
Go to the documentation of this file.
1/* SPDX-FileCopyrightText: 2011-2022 Blender Authors
2 *
3 * SPDX-License-Identifier: GPL-2.0-or-later */
4
5#include "id.hh"
6
7#include "BKE_lib_id.hh"
8
9namespace blender::io::hydra {
10
11IdData::IdData(HydraSceneDelegate *scene_delegate, const ID *id, pxr::SdfPath const &prim_id)
12 : id(id), prim_id(prim_id), scene_delegate_(scene_delegate)
13{
14}
15
16} // namespace blender::io::hydra
IdData(HydraSceneDelegate *scene_delegate, const ID *id, pxr::SdfPath const &prim_id)
Definition id.cc:11
Definition DNA_ID.h:413