~stewart/drizzle/rename-embedded-innodb-to-haildb

« back to all changes in this revision

Viewing changes to drizzled/plugin/plugin.h

  • Committer: Stewart Smith
  • Date: 2010-09-30 05:47:49 UTC
  • mfrom: (1787.3.15 drizzle)
  • Revision ID: stewart@flamingspork.com-20100930054749-s1szrpe6wm2z8532
merge trunk

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;