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.StatusCondition; 
  12. with System; 
  13.  
  14. --  <dref>Entity</dref> 
  15. package DDS.Entity is 
  16.  
  17.    type Ref is limited interface; 
  18.    type Ref_Access is access all Ref'Class; 
  19.  
  20.    procedure Enable (Self : not null access Ref) is abstract; 
  21.    --  <dref>Entity_enable</dref> 
  22.  
  23.    function Get_StatusCondition (Self : not null access Ref) return 
  24.      DDS.StatusCondition.Ref_Access is abstract; 
  25.    --  <dref>Entity_get_statuscondition</dref> 
  26.  
  27.    function Get_Status_Changes (Self : not null access Ref) return 
  28.      DDS.StatusMask is abstract; 
  29.    --  <dref>Entity_get_status_changes</dref> 
  30.  
  31.    function Get_Instance_Handle (Self : not null access Ref) return 
  32.      DDS.InstanceHandle_T is abstract; 
  33.    --  <dref>Entity_get_instance_handle</dref> 
  34.  
  35.    function Get_Entity_Kind (Self : not null access Ref) return 
  36.      DDS.EntityKind_T is abstract; 
  37.    --  <dref internal="true">Entity_get_entity_kind</dref> 
  38.  
  39.    function GetInterface (Self : not null access constant Ref) 
  40.                          return System.Address is abstract; 
  41.  
  42. end DDS.Entity;