ufe  1.0
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 "E:/jenkins/workspace/ufe-full-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 run-time.
19 //
20 // The run-time ID is allocated by the UFE run time manager when a run-time is
21 // registered by name. Run-times may change from run to run, depending on the
22 // load order of multiple run-times, and therefore should not be persisted.
23 //
24 // ID 0 is used to represent an invalid run-time 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