-- (c) Copyright, Real-Time Innovations, $Date:: 2012-02-16 #$
-- All rights reserved.
--
-- No duplications, whole or partial, manual or electronic, may be made
-- without express written permission. Any such copies, or
-- revisions thereof, must display this notice unaltered.
-- This code contains trade secrets of Real-Time Innovations, Inc.
pragma Ada_05;
with DDS;
with DDS.ReadCondition;
-- <dref>QueryCondition</dref>
package DDS.QueryCondition is
type Ref is limited interface and DDS.ReadCondition.Ref;
type Ref_Access is access all Ref'Class;
function Get_Query_Expression
(Self : not null access Ref)
return DDS.String is abstract;
-- <dref>QueryCondition_get_query_expression</dref>
procedure Get_Query_Parameters
(Self : not null access Ref;
Params : not null access DDS.String_Seq.Sequence) is abstract;
-- <dref>QueryCondition_get_query_parameters</dref>
procedure Set_Query_Parameters
(Self : not null access Ref;
Params : DDS.String_Seq.Sequence) is abstract;
-- <dref>QueryCondition_set_query_parameters</dref>
end DDS.QueryCondition;