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