1. --  (c) Copyright, Real-Time Innovations, $Date:: 2012-02-16 #$ 
  2. --  All rights reserved. 
  3. -- 
  4. --  No duplications, whole or partial, manual or electronic, may be made 
  5. --  without express written permission.  Any such copies, or 
  6. --  revisions thereof, must display this notice unaltered. 
  7. --  This code contains trade secrets of Real-Time Innovations, Inc. 
  8.  
  9. pragma Ada_05; 
  10.  
  11. with DDS.Entity; 
  12. with DDS.StatusCondition; 
  13. with DDS.StatusCondition_Impl; 
  14. with RTIDDS.Obj_Impl; 
  15.  
  16. package DDS.Entity_Impl is 
  17.  
  18.    type Ref is limited new RTIDDS.Obj_Impl.Ref and DDS.Entity.Ref with 
  19.       record 
  20.          StatusCondition : aliased DDS.StatusCondition_Impl.Ref; 
  21.       end record; 
  22.    type Ref_Access is access all Ref'Class; 
  23.  
  24.    procedure Enable (Self : not null access Ref); 
  25.  
  26.    function Get_StatusCondition (Self : not null access Ref) return 
  27.       DDS.StatusCondition.Ref_Access; 
  28.  
  29.    function Get_Status_Changes (Self : not null access Ref) return 
  30.      DDS.StatusMask; 
  31.  
  32.    function Get_Instance_Handle (Self : not null access Ref) return 
  33.      DDS.InstanceHandle_T; 
  34.  
  35.    function Get_Entity_Kind (Self : not null access Ref) return 
  36.      DDS.EntityKind_T; 
  37.  
  38.    procedure Entity_Initialize_I (Self : access Ref; 
  39.                                   CEntity : System.Address); 
  40.  
  41. end DDS.Entity_Impl;