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