~vjsamuel/gearmand/fix-bug-868883

« back to all changes in this revision

Viewing changes to bin/function.h

  • Committer: Brian Aker
  • Date: 2011-06-22 15:49:27 UTC
  • mfrom: (439.1.7 gearmand-trunk)
  • Revision ID: brian@tangent.org-20110622154927-ezro6sntfu48zf1q
Merge in curent ttrunk into the mainline.

Show diffs side-by-side

added added

removed removed

Lines of Context:
49
49
 
50
50
class Function {
51
51
  Bytes _name;
52
 
  gearman_task_st _task;
53
52
  Bytes _buffer;
54
53
 
55
54
public:
59
58
 
60
59
  ~Function();
61
60
 
62
 
  gearman_task_st *task();
63
 
 
64
61
  const char *name() const
65
62
  {
66
63
    return &_name[0];