~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/bin_string.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:
22
22
 
23
23
#include <drizzled/item/hex_string.h>
24
24
 
 
25
#include "drizzled/visibility.h"
 
26
 
25
27
namespace drizzled
26
28
{
27
29
 
31
33
  Item_bin_string(const char *str,uint32_t str_length);
32
34
};
33
35
 
34
 
class Item_result_field :public Item    /* Item with result field */
 
36
class DRIZZLED_API Item_result_field :
 
37
  public Item    /* Item with result field */
35
38
{
36
39
public:
37
40
  Field *result_field;                          /* Save result here */