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. limited with DDS.DomainParticipant; 
  12.  
  13. --  <dref>FlowController</dref> 
  14. package DDS.FlowController is 
  15.  
  16.    type Ref is limited interface; 
  17.    type Ref_Access is access all Ref'Class; 
  18.  
  19.    procedure Set_Property 
  20.      (Self : not null access Ref; 
  21.       prop : access DDS.FlowControllerProperty_T) is abstract; 
  22.  
  23.    procedure Get_Property 
  24.      (Self : not null access Ref; 
  25.       prop : access DDS.FlowControllerProperty_T) is abstract; 
  26.  
  27.    procedure Trigger_Flow 
  28.      (Self : not null access Ref) is abstract; 
  29.  
  30.    function Get_Name 
  31.      (Self : not null access Ref) 
  32.       return DDS.String is abstract; 
  33.  
  34.    procedure Get_Name 
  35.      (Self : not null access Ref; 
  36.       name : out DDS.String) is abstract; 
  37.  
  38.    function Get_Participant 
  39.      (Self : not null access Ref) 
  40.       return access DDS.DomainParticipant.Ref'Class is abstract; 
  41.  
  42. end DDS.FlowController;