~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/logging.h

Updated an include guard thanks to a nice catch during code review from Jay. Thanks Jay!

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
 
29
29
namespace drizzled
30
30
{
31
 
class Session;
32
 
 
33
31
namespace plugin
34
32
{
35
33
 
50
48
   */
51
49
  virtual bool pre(Session *) {return false;}
52
50
  virtual bool post(Session *) {return false;}
53
 
  virtual bool postEnd(Session*) {return false;}
54
51
 
55
52
  static bool addPlugin(Logging *handler);
56
53
  static void removePlugin(Logging *handler);
57
54
  static bool preDo(Session *session);
58
55
  static bool postDo(Session *session);
59
 
  static bool postEndDo(Session *session);
60
56
};
61
57
 
62
58
} /* namespace plugin */