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. with DDS.DataReader; 
  12. with DDS.DataWriter; 
  13. with DDS.TypeSupport; 
  14. package DDS.TypeSupport_Impl is 
  15.  
  16.    type Ref is abstract new DDS.TypeSupport.Ref with private; 
  17.    type Ref_Access is access all Ref'Class; 
  18.    pragma No_Strict_Aliasing (Ref_Access); 
  19.    function Create_TypedDataReaderI (Self : access Ref) return DDS.DataReader.Ref_Access 
  20.                                      is abstract; 
  21.  
  22.    procedure Destroy_TypedDataReaderI (Self   : access Ref; 
  23.                                        Reader : in out DDS.DataReader.Ref_Access) 
  24.    is abstract; 
  25.  
  26.    function Create_TypedDataWriterI (Self : access Ref) 
  27.                                      return DDS.DataWriter.Ref_Access 
  28.                                      is abstract; 
  29.  
  30.    procedure Destroy_TypedDataWriterI (Self   : access Ref; 
  31.                                        Writer : in out DDS.DataWriter.Ref_Access) 
  32.    is abstract; 
  33. private 
  34.    type Ref is abstract new DDS.TypeSupport.Ref with null record; 
  35. end DDS.TypeSupport_Impl;