1. pragma Ada_2012; 
  2. --  (c) Copyright, Real-Time Innovations, $Date:: 2012-02-16 #$ 
  3. --  All rights reserved. 
  4. -- 
  5. --  No duplications, whole or partial, manual or electronic, may be made 
  6. --  without express written permission.  Any such copies, or 
  7. --  revisions thereof, must display this notice unaltered. 
  8. --  This code contains trade secrets of Real-Time Innovations, Inc. 
  9.  
  10.  
  11.  
  12. with RTIDDS.Obj_Impl; 
  13. with DDS.Condition; 
  14. with RTIDDS.Low_Level.ndds_dds_c_dds_c_infrastructure_h; 
  15. package DDS.Condition_Impl is 
  16.    use  RTIDDS.Low_Level.ndds_dds_c_dds_c_infrastructure_h; 
  17.  
  18.    type Ref is  abstract limited new RTIDDS.Obj_Impl.Ref and DDS.Condition.Ref with null record; 
  19.    type Ref_Access is access all Ref'Class; 
  20.  
  21.    type DDS_Condition_Access is access all DDS_Condition with Storage_Size => 0; 
  22.  
  23.    function GetInterface (Self : not null access Ref) return DDS_Condition_Access; 
  24.    procedure SetInterface (Self : not null access Ref; To : DDS_Condition_Access); 
  25.  
  26.    procedure Set_User_Object (Self : not null access Ref; To : System.Address); 
  27.    function  Get_User_Object (Self : not null access Ref) return System.Address; 
  28.  
  29. end DDS.Condition_Impl;