Blender  V3.3
IO_types.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-or-later
2  * Copyright 2021 Blender Foundation. All rights reserved. */
3 #pragma once
4 
5 /* The CacheArchiveHandle struct is only used for anonymous pointers,
6  * to interface between C and C++ code. This is currently used
7  * to hide pointers to alembic ArchiveReader and USDStageReader. */
9  int unused;
10 };
11 
12 /* The CacheReader struct is only used for anonymous pointers,
13  * to interface between C and C++ code. This is currently used
14  * to hide pointers to AbcObjectReader and USDPrimReader
15  * (or subclasses thereof). */
16 struct CacheReader {
17  int unused;
18 };
int unused
Definition: IO_types.h:17