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. with DDS; 
  12. with DDS.ReadCondition; 
  13.  
  14. --  <dref>QueryCondition</dref> 
  15. package DDS.QueryCondition is 
  16.  
  17.    type Ref is limited interface and DDS.ReadCondition.Ref; 
  18.    type Ref_Access is access all Ref'Class; 
  19.  
  20.    function Get_Query_Expression 
  21.      (Self : not null access Ref) 
  22.      return DDS.String is abstract; 
  23.    --  <dref>QueryCondition_get_query_expression</dref> 
  24.  
  25.    procedure Get_Query_Parameters 
  26.      (Self   : not null access Ref; 
  27.       Params : not null access DDS.String_Seq.Sequence) is abstract; 
  28.    --  <dref>QueryCondition_get_query_parameters</dref> 
  29.  
  30.    procedure Set_Query_Parameters 
  31.      (Self   : not null access Ref; 
  32.       Params : DDS.String_Seq.Sequence) is abstract; 
  33.    --  <dref>QueryCondition_set_query_parameters</dref> 
  34.  
  35. end DDS.QueryCondition;