~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item.h

  • Committer: Eric Day
  • Date: 2009-08-06 07:14:37 UTC
  • mto: This revision was merged to the branch mainline in revision 1131.
  • Revision ID: eday@oddments.org-20090806071437-c3baqgtvsdxp1l1a
Renamed Protocol to Client, cleaned up some unnecessary methods along the way.

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
{
44
44
namespace plugin
45
45
{
46
 
class Protocol;
 
46
class Client;
47
47
}
48
48
}
49
49
 
242
242
  /**
243
243
   * This is only called from items that is not of type item_field.
244
244
   */
245
 
  virtual bool send(drizzled::plugin::Protocol *protocol, String *str);
 
245
  virtual bool send(drizzled::plugin::Client *client, String *str);
246
246
  /**
247
247
    Compares this Item to another Item, returning true if Item's 
248
248
    are functionally equal.