~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/memcached_functions/memc_increment.h

  • Committer: Brian Aker
  • Date: 2009-12-08 23:37:35 UTC
  • mfrom: (1192.3.82 pandora-build)
  • mto: This revision was merged to the branch mainline in revision 1241.
  • Revision ID: brian@gaz-20091208233735-6zfhecyxizlw8bub
Merge range fix

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
32
32
#ifndef PLUGIN_MEMCACHED_FUNCTIONS_MEMC_INCREMENT_H
33
33
#define PLUGIN_MEMCACHED_FUNCTIONS_MEMC_INCREMENT_H
34
34
 
 
35
#include <drizzled/server_includes.h>
35
36
#include <drizzled/function/str/strfunc.h>
36
37
 
37
38
/* implements memc_increment */
38
 
class MemcachedIncrement : public drizzled::Item_str_func
 
39
class MemcachedIncrement : public Item_str_func
39
40
{
40
41
public:
41
42
  MemcachedIncrement()
42
43
    : 
43
44
      Item_str_func(),
44
 
      failure_buff("FAILURE", &drizzled::my_charset_bin)
 
45
      failure_buff("FAILURE", &my_charset_bin)
45
46
  {}
46
47
 
47
48
  const char *func_name() const
49
50
    return "memc_increment";
50
51
  }
51
52
 
52
 
  drizzled::String *val_str(drizzled::String *);
 
53
  String *val_str(String *);
53
54
 
54
55
  void fix_length_and_dec()
55
56
  {
57
58
  }
58
59
 
59
60
private:
60
 
  drizzled::String failure_buff;
61
 
  drizzled::String buffer;
 
61
  String failure_buff;
 
62
  String buffer;
62
63
};
63
64
 
64
65
#endif /* PLUGIN_MEMCACHED_FUNCTIONS_MEMC_INCREMENT_H */