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