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