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 System; 
  12. with RTIDDS.Low_Level.dds_c.topic_h; 
  13.  
  14. package DDS.TopicListener.Low_Level is 
  15.    use RTIDDS.Low_Level.dds_c.topic_h; 
  16.  
  17.    procedure On_Inconsistent_Topic 
  18.      (Listener : System.Address; 
  19.       C_Topic  : access DDS_Topic; 
  20.       Status   : access constant DDS_InconsistentTopicStatus); 
  21.    pragma Convention (C, On_Inconsistent_Topic); 
  22.  
  23.    TopicListener_DEFAULT : constant RTIDDS.Low_Level.dds_c.topic_h.DDS_TopicListener := 
  24.      (as_listener            => (listener_data => System.Null_Address), 
  25.       on_inconsistent_topic  => on_inconsistent_topic'Access); 
  26.  
  27. end DDS.TopicListener.Low_Level;