~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/optimizer/sel_tree.h

  • Committer: pcrews
  • Date: 2011-05-24 17:36:24 UTC
  • mfrom: (1099.4.232 drizzle)
  • Revision ID: pcrews@lucid32-20110524173624-mwr1bvq6fa1r01ao
Updated translations + 2011.05.18 tarball tag

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
18
 */
19
19
 
20
 
#ifndef DRIZZLED_OPTIMIZER_SEL_TREE_H
21
 
#define DRIZZLED_OPTIMIZER_SEL_TREE_H
22
 
 
23
 
#include "drizzled/memory/sql_alloc.h"
24
 
 
25
 
namespace drizzled
26
 
{
27
 
 
28
 
namespace optimizer
29
 
{
30
 
 
31
 
class RangeParameter;
32
 
class SEL_IMERGE;
33
 
class SEL_ARG;
34
 
class RorScanInfo;
 
20
#pragma once
 
21
 
 
22
#include <drizzled/memory/sql_alloc.h>
 
23
 
 
24
namespace drizzled {
 
25
namespace optimizer {
35
26
 
36
27
class SEL_TREE : public drizzled::memory::SqlAlloc
37
28
{
153
144
 
154
145
} /* namespace drizzled */
155
146
 
156
 
#endif /* DRIZZLED_OPTIMIZER_SEL_TREE_H */