~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin_registry.h

  • Committer: Brian Aker
  • Date: 2009-07-29 18:35:48 UTC
  • mfrom: (1101.1.12 merge)
  • Revision ID: brian@gaz-20090729183548-yp36iwoaemfc76z0
Merging Monty (which includes new replication)

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
class QueryCache;
35
35
class SchedulerFactory;
36
36
class Listen;
 
37
 
37
38
namespace drizzled
38
39
{
39
40
namespace plugin
40
41
{
41
42
class Replicator;
 
43
class Applier;
42
44
class Handle;
43
45
}
44
46
}
69
71
  void add(Authentication *auth);
70
72
  void add(QueryCache *qcache);
71
73
  void add(SchedulerFactory *scheduler);
 
74
  void add(drizzled::plugin::Replicator *replicator);
 
75
  void add(drizzled::plugin::Applier *applier);
72
76
  void add(const Listen &listen_obj);
73
 
  void add(drizzled::plugin::Replicator *repl);
74
77
 
75
78
  void remove(StorageEngine *engine);
76
79
  void remove(InfoSchemaTable *schema_table);
80
83
  void remove(Authentication *auth);
81
84
  void remove(QueryCache *qcache);
82
85
  void remove(SchedulerFactory *scheduler);
 
86
  void remove(drizzled::plugin::Replicator *replicator);
 
87
  void remove(drizzled::plugin::Applier *applier);
83
88
  void remove(const Listen &listen_obj);
84
 
  void remove(drizzled::plugin::Replicator *repl);
85
89
 
86
90
};
87
91