~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/plugin.h

  • Committer: lbieber
  • Date: 2010-09-23 01:31:43 UTC
  • mfrom: (1787.1.2 build)
  • Revision ID: lbieber@orisndriz08-20100923013143-z1fh9b7wdve6ha8s
Merge Paul - fix pbxt startup and shutdown
Merge Shrews - fix bug 644475 - Fix rabbitmq.variables test

Show diffs side-by-side

added added

removed removed

Lines of Context:
49
49
  explicit Plugin(std::string in_name, std::string in_type_name);
50
50
  virtual ~Plugin() {}
51
51
 
 
52
  /*
 
53
   * This method is called for all plug-ins on shutdown,
 
54
   * _before_ the plug-ins are deleted. It can be used
 
55
   * when shutdown code references other plug-ins.
 
56
   */
 
57
  virtual void shutdownPlugin()
 
58
  {
 
59
  }
 
60
 
52
61
  void activate()
53
62
  {
54
63
    is_active= true;