~zorba-coders/zorba/bugs-912586-912593-912722

« back to all changes in this revision

Viewing changes to swig/DynamicContext.h

  • Committer: Cezar Andrei
  • Date: 2012-03-28 15:42:12 UTC
  • mfrom: (10606.1.129 zorba)
  • Revision ID: cezar.lp@cezarandrei.com-20120328154212-jh2heq49xcqjppce
Merge from trunck and resolve ChangeLog conflict.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright 2006-2008 The FLWOR Foundation.
 
3
 *
 
4
 * Licensed under the Apache License, Version 2.0 (the "License");
 
5
 * you may not use this file except in compliance with the License.
 
6
 * You may obtain a copy of the License at
 
7
 * 
 
8
 * http://www.apache.org/licenses/LICENSE-2.0
 
9
 *
 
10
 * Unless required by applicable law or agreed to in writing, software
 
11
 * distributed under the License is distributed on an "AS IS" BASIS,
 
12
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
13
 * See the License for the specific language governing permissions and
 
14
 * limitations under the License.
 
15
 */
 
16
#ifndef API_DYNAMIC_CONTEXT_H
 
17
#define API_DYNAMIC_CONTEXT_H
 
18
 
 
19
class DynamicContext
 
20
{
 
21
private:
 
22
  zorba::DynamicContext* theContext;
 
23
public:
 
24
 
 
25
  DynamicContext():theContext(0) {}
 
26
  DynamicContext(const DynamicContext& aCtx):theContext(aCtx.theContext) {}
 
27
  DynamicContext(zorba::DynamicContext* aCtx):theContext(aCtx) {}
 
28
 
 
29
  bool  getContextItem (Item& aItem);
 
30
  Item  getCurrentDateTime ();
 
31
  Item  getDefaultCollection ();
 
32
  int   getImplicitTimezone ();
 
33
  bool  getVariable (const std::string& aNamespace, const std::string& aLocalname, Item& aItem, Iterator& aIterator);
 
34
  
 
35
  bool setContextItem (Item& aItem);
 
36
  bool setCurrentDateTime (Item& aDateTimeItem);
 
37
  bool setDefaultCollection (Item& aCollectionUri);
 
38
  bool setImplicitTimezone (int aTimezone);
 
39
  bool setVariable (const std::string& aNamespace, const std::string& aLocalname, Iterator& aIter);
 
40
  bool setVariable (const std::string& aQName, Item& aItem);
 
41
  bool setVariable (const std::string& aQName, Iterator& aIterator);
 
42
 
 
43
};
 
44
 
 
45
#endif
 
 
b'\\ No newline at end of file'