~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin_registry.h

  • Committer: Monty Taylor
  • Date: 2009-04-10 18:49:47 UTC
  • mto: (992.1.1 mordred)
  • mto: This revision was merged to the branch mainline in revision 990.
  • Revision ID: mordred@inaugust.com-20090410184947-3pm3yppi0di5pien
Hooked transaction_services into Plugin_registry.

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
class QueryCache;
36
36
class SchedulerFactory;
37
37
class ProtocolFactory;
 
38
namespace drizzled
 
39
{
 
40
namespace plugin
 
41
{
 
42
class Replicator;
 
43
}
 
44
}
38
45
 
39
46
class Plugin_registry
40
47
{
63
70
  void registerPlugin(QueryCache *qcache);
64
71
  void registerPlugin(SchedulerFactory *scheduler);
65
72
  void registerPlugin(ProtocolFactory *protocol);
 
73
  void registerPlugin(drizzled::plugin::Replicator *repl);
66
74
 
67
75
};
68
76