~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/command_log/command_log_reader.h

Merge default plugin.

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
  /** The Command log object this reader uses */
53
53
  const CommandLog &log;
54
54
public:
55
 
  CommandLogReader(const CommandLog &in_log)
56
 
    :log(in_log)
 
55
  CommandLogReader(std::string name_arg, const CommandLog &in_log)
 
56
    : drizzled::plugin::CommandReader(name_arg), log(in_log)
57
57
  {}
58
58
 
59
59
  /** Destructor */