ufe  4.2
Universal Front End is a DCC-agnostic component that will allow a DCC to browse and edit data in multiple data models
rtid.h
Go to the documentation of this file.
1 #line 1 "S:/jenkins/workspace/ECP/ufe/ufe-full-python3.10-windows/ufe/include/rtid.h"
2 #ifndef _ufeRtid
3 #define _ufeRtid
4 // ===========================================================================
5 // Copyright 2018 Autodesk, Inc. All rights reserved.
6 //
7 // Use of this software is subject to the terms of the Autodesk license
8 // agreement provided at the time of installation or download, or which
9 // otherwise accompanies this software in either electronic or hard copy form.
10 // ===========================================================================
11 
12 #include "ufe.h"
13 
14 #include <cstdint>
15 
16 UFE_NS_DEF {
17 
18 // Integer identifier for a UFE runtime.
19 //
20 // The runtime ID is allocated by the UFE runtime manager when a runtime is
21 // registered by name. Runtimes may change from run to run, depending on the
22 // load order of multiple runtimes, and therefore should not be persisted.
23 //
24 // ID 0 is used to represent an invalid runtime ID.
25 
26 typedef uint32_t Rtid;
27 
28 }
29 
30 #endif /* _ufeRtid */
uint32_t Rtid
Definition: rtid.h:26
#define UFE_NS_DEF
Definition: ufe.h:35