~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/authentication.h

Some carnage. I'm sure it'll need fixed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
namespace plugin
33
33
{
34
34
 
35
 
class Authentication
 
35
class Authentication : public Plugin
36
36
{
 
37
  Authentication();
 
38
  Authentication(const Authentication &);
37
39
public:
38
 
  Authentication() {}
 
40
  explicit Authentication(std::string name_arg) : Plugin(name_arg) {}
39
41
  virtual ~Authentication() {}
40
42
 
41
43
  virtual bool authenticate(Session *, const char *)= 0;