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 DDS.MultiTopic; 
  13. with DDS.Domain_Entity_Impl; 
  14. limited with DDS.DomainParticipant; 
  15. with DDS.StatusCondition; 
  16. with DDS.TopicDescription_Impl; 
  17.  
  18. package DDS.MultiTopic_Impl is 
  19.    use TopicDescription_Impl; 
  20.    type Ref is limited new DDS.TopicDescription_Impl.Ref and DDS.MultiTopic.Ref with null record; 
  21.    type Ref_Access is access all Ref'Class; 
  22.  
  23.    --  Re-Implement From DDS.Entity 
  24.  
  25.    procedure Enable (Self : not null access Ref); 
  26.  
  27.    function Get_StatusCondition (Self : not null access Ref) return 
  28.      DDS.StatusCondition.Ref_Access; 
  29.  
  30.    function Get_Status_Changes (Self : not null access Ref) return 
  31.      DDS.StatusMask; 
  32.  
  33.    function Get_Instance_Handle (Self : not null access Ref) return 
  34.      DDS.InstanceHandle_T; 
  35.  
  36.    --  Re-Implement fron DDS.TopicDescription 
  37.    function Get_Type_Name 
  38.      (Self : not null access Ref) 
  39.       return DDS.String; 
  40.  
  41.    function Get_Name 
  42.      (Self : not null access Ref) 
  43.       return DDS.String; 
  44.  
  45.    function Get_Participant 
  46.      (Self : not null access Ref) 
  47.       return access DDS.DomainParticipant.Ref'Class; 
  48.    -- 
  49.    -- 
  50.    -- 
  51.    function Get_Subscription_Expression 
  52.      (Self : not null access Ref) 
  53.       return DDS.String; 
  54.  
  55.    function As_TopicDescription_Impl_I 
  56.      (Self : not null access Ref) 
  57.      return access DDS.TopicDescription_Impl.Ref'Class; 
  58.  
  59. end DDS.MultiTopic_Impl;