~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/schema_dictionary/dictionary.cc

Additional plugins.

Show diffs side-by-side

added added

removed removed

Lines of Context:
86
86
  return 0;
87
87
}
88
88
 
 
89
int foo(void);
 
90
int foo(void)
 
91
{
 
92
  drizzled::plugin::Registry &registry= drizzled::plugin::Registry::singleton();
 
93
  init(registry);
 
94
  finalize(registry);
 
95
 
 
96
  return 0;
 
97
}
 
98
 
 
99
#if 0
89
100
DRIZZLE_DECLARE_PLUGIN
90
101
{
91
102
  DRIZZLE_VERSION_ID,
101
112
  NULL
102
113
}
103
114
DRIZZLE_DECLARE_PLUGIN_END;
 
115
#endif