~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/command_reader.h

Fixes based on Monty's code review.

Show diffs side-by-side

added added

removed removed

Lines of Context:
63
63
   * @param Pointer to a command message to fill
64
64
   *
65
65
   * @retval
66
 
   *  true if Command message was read successfully and the supplied pointer to message was filled
 
66
   *  true if Command message was read successfully and the supplied pointer
 
67
   *  to message was filled
67
68
   * @retval
68
69
   *  false if not found or read successfully
69
70
   */
70
 
  virtual bool read(const drizzled::ReplicationServices::GlobalTransactionId &to_read, 
71
 
                    drizzled::message::Command *to_fill)= 0;
 
71
  virtual bool read(const ReplicationServices::GlobalTransactionId &to_read, 
 
72
                    message::Command *to_fill)= 0;
72
73
};
73
74
 
74
75
} /* end namespace drizzled::plugin */