Revert unnecessary change to plugin class.

This commit is contained in:
Robin Sommer 2023-05-15 17:22:51 +02:00
parent 40b1d8f913
commit 90fd5c062a
No known key found for this signature in database
GPG key ID: D8187293B3FFE5D0

View file

@ -809,13 +809,6 @@ public:
*/ */
void Describe(ODesc* d) const; void Describe(ODesc* d) const;
/**
* Registers a component.
*
* @param c The component. The method takes ownership.
*/
void AddComponent(Component* c);
/** /**
* Registers an individual BiF that the plugin defines. The * Registers an individual BiF that the plugin defines. The
* information is for informational purposes only and will show up in * information is for informational purposes only and will show up in
@ -885,6 +878,13 @@ protected:
*/ */
virtual void Done(); virtual void Done();
/**
* Registers a component.
*
* @param c The component. The method takes ownership.
*/
void AddComponent(Component* c);
/** /**
* Calls the Initialize() function of all components. * Calls the Initialize() function of all components.
*/ */