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