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