~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/authentication.h

Cleaned up the constructor initializer lists per Brian.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
{
32
32
  Authentication();
33
33
  Authentication(const Authentication &);
 
34
  Authentication& operator=(const Authentication &);
34
35
public:
35
36
  explicit Authentication(std::string name_arg) : Plugin(name_arg) {}
36
37
  virtual ~Authentication() {}