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