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