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.Listener; 
  13. limited with DDS.Topic; 
  14.  
  15. --  <dref>TopicListener</dref> 
  16. package DDS.TopicListener is 
  17.  
  18.    type Ref is limited interface and DDS.Listener.Ref; 
  19.    type Ref_Access is access all Ref'Class; 
  20.  
  21.    procedure On_Inconsistent_Topic 
  22.      (Self      : not null access Ref; 
  23.       Topic     : access constant DDS.Topic.Ref'Class; 
  24.       Status    : in DDS.InconsistentTopicStatus) is null; 
  25.    --  <dref>TopicListener_on_inconsistent_topic</dref> 
  26.  
  27. end DDS.TopicListener;