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. limited with DDS.DomainParticipant; 
  12.  
  13. --  <module name="DDSTopicModule" actualName="Topic Module">topic</module> 
  14. --  <module name="DDSTopicEntityModule" actualName="Topics">TopicEntityGroupDocs</module> 
  15. --  <dref>TopicDescription</dref> 
  16. package DDS.TopicDescription is 
  17.  
  18.    type Ref is limited interface; 
  19.    type Ref_Access is access all Ref'Class; 
  20.  
  21.    function Get_Type_Name 
  22.      (Self : not null access Ref) 
  23.       return DDS.String is abstract; 
  24.    --  <dref>TopicDescription_get_type_name</dref> 
  25.  
  26.    function Get_Name 
  27.      (Self : not null access Ref) 
  28.       return DDS.String is abstract; 
  29.    --  <dref>TopicDescription_get_name</dref> 
  30.  
  31.    function Get_Participant 
  32.      (Self : not null access Ref) 
  33.      return access DDS.DomainParticipant.Ref'Class is abstract; 
  34.    --  <dref>TopicDescription_get_participant</dref> 
  35.  
  36.  
  37. end DDS.TopicDescription;