~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/func.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:
17
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
18
 */
19
19
 
 
20
 
 
21
 
20
22
#ifndef DRIZZLED_FUNCTION_FUNC_H
21
23
#define DRIZZLED_FUNCTION_FUNC_H
22
24
 
27
29
#include <drizzled/item/bin_string.h>
28
30
#include "drizzled/current_session.h"
29
31
 
 
32
#include "drizzled/visibility.h"
 
33
 
30
34
namespace drizzled
31
35
{
32
36
 
33
 
class Item_func :public Item_result_field
 
37
class DRIZZLED_API Item_func :
 
38
  public Item_result_field
34
39
{
35
40
  Session &_session;
36
41