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.  
  11. with DDS.Condition; 
  12. limited with DDS.Entity; 
  13.  
  14. --  <dref>StatusCondition</dref> 
  15. package DDS.StatusCondition is 
  16.  
  17.    type Ref is limited interface and DDS.Condition.Ref; 
  18.    type Ref_Access is access all Ref'Class; 
  19.  
  20.    function Get_Enabled_Statuses 
  21.      (Self : not null access Ref) 
  22.       return DDS.StatusMask is abstract; 
  23.    --  <dref>StatusCondition_get_enabled_statuses</dref> 
  24.  
  25.    procedure Set_Enabled_Statuses 
  26.      (Self : not null access Ref; 
  27.       Mask : in DDS.StatusMask) is abstract; 
  28.    --  <dref>StatusCondition_set_enabled_statuses</dref> 
  29.  
  30.    function Get_Entity 
  31.      (Self : not null access Ref) 
  32.       return access DDS.Entity.Ref'Class is abstract; 
  33.    --  <dref>StatusCondition_get_entity</dref> 
  34.  
  35.    function "=" (L : StatusCondition.Ref_Access; 
  36.                  R : Condition.Ref_Access) return Boolean; 
  37.  
  38.    function "=" (L : Condition.Ref_Access; 
  39.                  R : StatusCondition.Ref_Access) return Boolean; 
  40.  
  41. end DDS.StatusCondition; 
  42.