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.Entity; 
  12. with DDS.Condition_Impl; 
  13. with DDS.StatusCondition; 
  14.  
  15. package DDS.StatusCondition_Impl is 
  16.  
  17.    type Ref is limited new DDS.Condition_Impl.Ref and DDS.StatusCondition.Ref with 
  18.       record 
  19.          Owner : DDS.Entity.Ref_Access; 
  20.       end record; 
  21.    type Ref_Access is access all Ref'Class; 
  22.  
  23.    function Get_Enabled_Statuses 
  24.      (Self : not null access Ref) 
  25.       return DDS.StatusMask; 
  26.  
  27.    function Get_Trigger_Value 
  28.      (Self : access Ref) 
  29.      return DDS.Boolean; 
  30.  
  31.    procedure Set_Enabled_Statuses 
  32.      (Self : not null access Ref; 
  33.       Mask : in DDS.StatusMask); 
  34.  
  35.    function Get_Entity 
  36.      (Self : not null access Ref) 
  37.       return access DDS.Entity.Ref'Class; 
  38.  
  39.    function Get_Impl_I 
  40.      (Self : access Ref) 
  41.      return access DDS.Condition_Impl.Ref; 
  42.  
  43. end DDS.StatusCondition_Impl;