~zorba-coders/zorba/bug-1189803

« back to all changes in this revision

Viewing changes to src/runtime/eval/eval.h

  • Committer: Luis Rodriguez Gonzalez
  • Date: 2013-09-19 14:00:22 UTC
  • mfrom: (11612.1.19 lp_zorba)
  • Revision ID: kuraru@gmail.com-20130919140022-tw41ekb6ey16xbxi
MergedĀ fromĀ trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
 
24
24
#include "runtime/base/narybase.h"
25
25
 
 
26
#include <zorba/internal/unique_ptr.h>
 
27
 
26
28
namespace zorba {
27
29
 
28
30
 
31
33
public:
32
34
  PlanIter_t                     thePlan;
33
35
  PlanWrapper_t                  thePlanWrapper;
34
 
  std::auto_ptr<CompilerCB>      ccb;
35
 
  std::auto_ptr<dynamic_context> dctx;
 
36
  std::unique_ptr<CompilerCB>      ccb;
 
37
  std::unique_ptr<dynamic_context> dctx;
36
38
 
37
39
public:
38
40
  EvalIteratorState();