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. with DDS.DataReaderListener; 
  12. limited with DDS.Subscriber; 
  13.  
  14. --  <dref>SubscriberListener</dref> 
  15. package DDS.SubscriberListener is 
  16.  
  17.    type Ref is limited interface and DDS.DataReaderListener.Ref; 
  18.    type Ref_Access is access all Ref'Class; 
  19.  
  20.    procedure On_Data_On_Readers 
  21.      (Self           : not null access Ref; 
  22.       The_Subscriber : in out DDS.Subscriber.Ref'Class) is null; 
  23.    --  <dref>SubscriberListener_on_data_on_readers</dref> 
  24.  
  25. end DDS.SubscriberListener;