~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/memory/heap.h

  • Committer: Brian Aker
  • Date: 2011-02-12 08:10:17 UTC
  • mto: This revision was merged to the branch mainline in revision 2161.
  • Revision ID: brian@tangent.org-20110212081017-7793i41ybt7gp5ty
More removal of session from includes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
/* This file should be included when using heap_database_functions */
19
19
/* Author: Michael Widenius */
20
20
 
21
 
#pragma once
 
21
#ifndef PLUGIN_MEMORY_HEAP_H
 
22
#define PLUGIN_MEMORY_HEAP_H
22
23
 
23
24
#include <drizzled/base.h>
 
25
#include <drizzled/common.h>
 
26
#include "drizzled/internal/my_pthread.h"
24
27
#include <drizzled/thr_lock.h>
25
28
 
26
29
#include <plugin/myisam/my_handler.h>
 
30
#include "drizzled/tree.h"
27
31
 
28
32
#include <vector>
29
33
 
309
313
 
310
314
typedef unsigned char *HEAP_PTR;
311
315
 
 
316
#endif /* PLUGIN_MEMORY_HEAP_H */