~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/logging_handler.h

  • Committer: Monty Taylor
  • Date: 2009-04-01 01:00:08 UTC
  • mto: (971.1.10 mordred)
  • mto: This revision was merged to the branch mainline in revision 971.
  • Revision ID: mordred@inaugust.com-20090401010008-xjoc47g2tizkrqrv
Fixed lack-of-NULL.

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
   * Make these no-op rather than pure-virtual so that it's easy for a plugin
34
34
   * to only 
35
35
   */
36
 
  virtual inline bool pre(Session *) {return false;}
37
 
  virtual inline bool post(Session *) {return false;}
 
36
  virtual bool pre(Session *) {return false;}
 
37
  virtual bool post(Session *) {return false;}
38
38
};
39
39
 
40
40
#endif /* DRIZZLED_PLUGIN_LOGGING_H */