~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/memcached_functions/memc_replace.h

  • Committer: Monty Taylor
  • Date: 2009-12-25 08:50:15 UTC
  • mto: This revision was merged to the branch mainline in revision 1255.
  • Revision ID: mordred@inaugust.com-20091225085015-83sux5qsvy312gew
MEM_ROOT == memory::Root

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* - mode: c; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
3
 *
4
 
 * Copyright (C) 2009, Patrick "CaptTofu" Galbraith, Padraig O'Sullivan
 
4
 * Copyright (c) 2009, Patrick "CaptTofu" Galbraith, Padraig O'Sullivan
5
5
 * All rights reserved.
6
6
 *
7
7
 * Redistribution and use in source and binary forms, with or without
38
38
#include <string>
39
39
 
40
40
/* implements memc_replace */
41
 
class MemcachedReplace: public drizzled::Item_int_func
 
41
class MemcachedReplace: public Item_int_func
42
42
{
43
 
  drizzled::String failure_buff;
44
 
  drizzled::String value;
 
43
  String failure_buff;
 
44
  String value;
45
45
public:
46
46
  MemcachedReplace()
47
47
    :
48
48
      Item_int_func(),
49
 
      failure_buff("0", &drizzled::my_charset_bin)
 
49
      failure_buff("0", &my_charset_bin)
50
50
  {}
51
51
 
52
52
  const char *func_name() const