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 DDS.Condition; 
  13. limited with DDS.DataReader; 
  14.  
  15. --  <dref>ReadCondition</dref> 
  16. package DDS.ReadCondition is 
  17.  
  18.    type Ref is limited interface and DDS.Condition.Ref; 
  19.    type Ref_Access is access all Ref'Class; 
  20.  
  21.    function Get_Sample_State_Mask 
  22.      (Self : not null access Ref) 
  23.      return DDS.SampleStateMask is abstract; 
  24.    --  <dref>ReadCondition_get_sample_state_mask</dref> 
  25.  
  26.    function Get_View_State_Mask 
  27.      (Self : not null access Ref) 
  28.      return DDS.ViewStateMask is abstract; 
  29.    --  <dref>ReadCondition_get_view_state_mask</dref> 
  30.  
  31.    function Get_Instance_State_Mask 
  32.      (Self : not null access Ref) 
  33.      return DDS.InstanceStateMask is abstract; 
  34.    --  <dref>ReadCondition_get_instance_state_mask</dref> 
  35.  
  36.    function Get_DataReader 
  37.      (Self : not null access Ref) 
  38.      return access DDS.DataReader.Ref'Class is abstract; 
  39.    --  <dref>ReadCondition_get_datareader</dref> 
  40.  
  41. end DDS.ReadCondition;