Welcome to mirror list, hosted at ThFree Co, Russian Federation.

IO_types.h « common « io « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7b1741eeaf3d74223b2be04c8bfacefc09729b68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* SPDX-License-Identifier: GPL-2.0-or-later
 * Copyright 2021 Blender Foundation. All rights reserved. */
#pragma once

/* The CacheArchiveHandle struct is only used for anonymous pointers,
 * to interface between C and C++ code. This is currently used
 * to hide pointers to alembic ArchiveReader and USDStageReader. */
struct CacheArchiveHandle {
  int unused;
};

/* The CacheReader struct is only used for anonymous pointers,
 * to interface between C and C++ code. This is currently used
 * to hide pointers to AbcObjectReader and USDPrimReader
 * (or subclasses thereof). */
struct CacheReader {
  int unused;
};