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. with DDS.FlowController; 
  12. with RTIDDS.Obj_Impl; 
  13.  
  14. package DDS.FlowController_Impl is 
  15.  
  16.    type Ref is limited new RTIDDS.Obj_Impl.Ref and DDS.FlowController.Ref with null record; 
  17.    type Ref_Access is access all Ref'Class; 
  18.  
  19.    --  DDS.FlowController 
  20.  
  21.    procedure Set_Property 
  22.      (Self : not null access Ref; 
  23.       prop : access DDS.FlowControllerProperty_T); 
  24.  
  25.    procedure Get_Property 
  26.      (Self : not null access Ref; 
  27.       prop : access DDS.FlowControllerProperty_T); 
  28.  
  29.    procedure Trigger_Flow 
  30.      (Self : not null access Ref); 
  31.  
  32.    function Get_Name 
  33.      (Self : not null access Ref) 
  34.       return DDS.String; 
  35.  
  36.    procedure Get_Name 
  37.      (Self : not null access Ref; 
  38.       name : out DDS.String); 
  39.  
  40.    function Get_Participant 
  41.      (Self : not null access Ref) 
  42.       return access DDS.DomainParticipant.Ref'Class; 
  43.  
  44.    function CreateI 
  45.      (participant : access DDS.DomainParticipant.Ref'Class; 
  46.       name        : DDS.String; 
  47.       explicitDestroyOnly : Boolean; 
  48.       property    : access DDS.FlowControllerProperty_T) 
  49.       return access DDS.FlowController_Impl.Ref'Class; 
  50.  
  51. end DDS.FlowController_Impl;