~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/cursor.h

  • Committer: Monty Taylor
  • Date: 2011-01-26 19:15:55 UTC
  • mto: This revision was merged to the branch mainline in revision 2126.
  • Revision ID: mordred@inaugust.com-20110126191555-nq5nnzyscvngsip2
Turns on -fvisibility=hidden by default. Symbols intended to be used by
plugins need to be marked with DRIZZLED_API.

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
#include <bitset>
42
42
#include <algorithm>
43
43
 
 
44
#include "drizzled/visibility.h"
 
45
 
44
46
namespace drizzled
45
47
{
46
48
 
143
145
  If a blob column has NULL value, then its length and blob data pointer
144
146
  must be set to 0.
145
147
*/
146
 
class Cursor
 
148
class DRIZZLED_API Cursor
147
149
{
148
150
  friend class SEAPITesterCursor;
149
151
  Table &table;               /* The current open table */