~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/function.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:
28
28
#include <vector>
29
29
#include <functional>
30
30
 
 
31
#include "drizzled/visibility.h"
 
32
 
31
33
namespace drizzled
32
34
{
33
35
 
44
46
/**
45
47
 * Functions in the server: AKA UDF
46
48
 */
47
 
class Function
 
49
class DRIZZLED_API Function
48
50
  : public Plugin,
49
51
    public std::unary_function<memory::Root*, Item_func *>
50
52
{