~zorba-coders/zorba/hof-merge

« back to all changes in this revision

Viewing changes to include/zorba/static_context.h

  • Committer: Markos Zaharioudakis
  • Date: 2013-03-25 15:11:52 UTC
  • mfrom: (10632.1.679 zorba)
  • Revision ID: markos_za@yahoo.com-20130325151152-fh98ryulrdd0he8l
mergeĀ fromĀ trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
205
205
  virtual bool
206
206
  setXQueryVersion( xquery_version_t aMode ) = 0;
207
207
 
 
208
  /** \brief Set the JSONiq processing mode
 
209
   *
 
210
   *
 
211
   * @param aMode the JSONiq version
 
212
   * @return true if the version was set, false otherwise.
 
213
   */
 
214
  virtual bool
 
215
  setJSONiqVersion( jsoniq_version_t aMode ) = 0;
 
216
 
208
217
  /** \brief Get the XQuery processing mode (version 1.0 or 3.0).
209
218
   *
210
219
   *
213
222
  virtual xquery_version_t
214
223
  getXQueryVersion( ) const = 0;
215
224
 
 
225
  /** \brief Get the JSONiq processing mode.
 
226
   *
 
227
   *
 
228
   * @return jsoniq_version_t the JSONiq version processing mode.
 
229
   */
 
230
  virtual jsoniq_version_t
 
231
  getJSONiqVersion( ) const = 0;
 
232
 
216
233
  /** \brief Set the XPath 1.0 compatibility mode.
217
234
   *         (see http://www.w3.org/TR/xquery/#static_context)
218
235
   *