summaryrefslogtreecommitdiffstats
path: root/qlparser/querytree.icc
blob: 251704d98c4197966cb74f7879c60a4b381efa6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*************************************************************
 *
 * Copyright (C) 1996 FORWISS
 *
 * INLINE SOURCE: querytree.icc
 *
 * MODULE:  qlparser
 * CLASS:   QueryTree
 *
 * CHANGE HISTORY (append further entries):
 * when         who         what
 * ----------------------------------------------------------
 * 04-09-96     Ritsch      created
 * 11-08-97     Ritsch      merged with version 1.5.1.2
 *
 * COMMENTS:
 *
 ************************************************************/

inline QtNode*
QueryTree::getRoot() const
{
  return rootNode;
};


inline void
QueryTree::setRoot( QtNode* root )
{
  rootNode = root;
};


inline void
QueryTree::setOptimizationLevel( unsigned int level )
{
  optimizationLevel = level;
};


inline unsigned int
QueryTree::getOptimizationLevel()
{
  return optimizationLevel;
};