~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/event_observer.cc

  • Committer: Brian Aker
  • Date: 2010-10-12 06:13:30 UTC
  • mto: (1857.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 1858.
  • Revision ID: brian@tangent.org-20101012061330-omrzr0yla4ybul3t
More testing around events.

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
 
47
47
/*============================*/
48
48
  // Basic plugin registration stuff.
49
 
  static vector<EventObserver *> all_event_plugins;
 
49
  EventObserverVector all_event_plugins;
 
50
 
 
51
  const EventObserverVector &EventObserver::getEventObservers(void)
 
52
  {
 
53
    return all_event_plugins;
 
54
  }
50
55
 
51
56
  //---------
52
57
  bool EventObserver::addPlugin(EventObserver *handler)