~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/registry.h

Cleaned up the constructor initializer lists per Brian.

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
  Handle *current_handle;
45
45
 
46
46
  Registry()
47
 
   : handle_map(), plugin_registry(), current_handle(NULL)
 
47
   : handle_map(),
 
48
     plugin_registry(),
 
49
     current_handle(NULL)
48
50
  { }
49
51
 
50
52
  Registry(const Registry&);
 
53
  Registry& operator=(const Registry&);
51
54
public:
52
55
 
53
56
  static plugin::Registry& singleton()