Bifrost SDK
Bifrost SDK documentation
PtrFwd.h
Go to the documentation of this file.
1//-
2// =============================================================================
3// Copyright 2023 Autodesk, Inc. All rights reserved.
4//
5// Use of this software is subject to the terms of the Autodesk license
6// agreement provided at the time of installation or download, or which
7// otherwise accompanies this software in either electronic or hard copy form.
8// =============================================================================
9//+
10
13
14#ifndef AMINO_PTR_FWD_H
15#define AMINO_PTR_FWD_H
16
17namespace Amino {
18
19template <typename T>
20class Ptr;
21
22template <typename T>
23class MutablePtr;
24
25template <typename T>
26class PtrGuard;
27
28struct PointeeManager;
29
30} // namespace Amino
31
32#endif
Definition: HostData.h:33
Ptr(MutablePtr< T >) -> Ptr< T >
Deduction guide for Ptr.
PtrGuard(Ptr< T > &) -> PtrGuard< T >
Deduction guide for PtrGuard.