~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/heap/heap.h

  • Committer: Joseph Daly
  • Date: 2010-09-12 02:04:41 UTC
  • mto: (1759.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 1760.
  • Revision ID: jdaly@rx7-20100912020441-3hc8uahm6ar25i52
fix spacing

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
 
14
14
   You should have received a copy of the GNU General Public License
15
15
   along with this program; if not, write to the Free Software
16
 
   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA */
 
16
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
17
17
 
18
18
/* This file should be included when using heap_database_functions */
19
19
/* Author: Michael Widenius */
20
20
 
21
 
#ifndef PLUGIN_MEMORY_HEAP_H
22
 
#define PLUGIN_MEMORY_HEAP_H
 
21
#ifndef PLUGIN_HEAP_HEAP_H
 
22
#define PLUGIN_HEAP_HEAP_H
23
23
 
24
24
#include <drizzled/base.h>
25
25
#include <drizzled/common.h>
193
193
 
194
194
 
195
195
  std::string name;                     /* Name of "memory-file" */
 
196
  drizzled::THR_LOCK lock;
196
197
  bool delete_on_close;
197
198
  uint32_t auto_key;
198
199
  uint32_t auto_key_type;                       /* real type of the auto key segment */
313
314
 
314
315
typedef unsigned char *HEAP_PTR;
315
316
 
316
 
#endif /* PLUGIN_MEMORY_HEAP_H */
 
317
#endif /* PLUGIN_HEAP_HEAP_H */