~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/include/row0types.h

merged with up to date trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*****************************************************************************
2
2
 
3
 
Copyright (c) 1996, 2010, Innobase Oy. All Rights Reserved.
 
3
Copyright (C) 1996, 2010, Innobase Oy. All Rights Reserved.
4
4
 
5
5
This program is free software; you can redistribute it and/or modify it under
6
6
the terms of the GNU General Public License as published by the Free Software
55
55
 
56
56
/* MySQL data types */
57
57
#if defined(BUILD_DRIZZLE)
58
 
# if defined(__cplusplus)
59
 
typedef drizzled::Table TABLE;
60
 
# else
 
58
#if defined(__cplusplus)
 
59
namespace drizzled
 
60
{
 
61
class Table;
 
62
}
 
63
typedef ::drizzled::Table TABLE;
 
64
#else
61
65
typedef void TABLE;
62
 
# endif /* cplusplus */
 
66
#endif
63
67
#else
64
68
typedef struct st_table TABLE;
65
69
#endif