diff options
Diffstat (limited to 'cpp/src/qpid/Plugin.h')
-rw-r--r-- | cpp/src/qpid/Plugin.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/cpp/src/qpid/Plugin.h b/cpp/src/qpid/Plugin.h index 5aed844b43..e040662866 100644 --- a/cpp/src/qpid/Plugin.h +++ b/cpp/src/qpid/Plugin.h @@ -70,15 +70,17 @@ class Plugin : boost::noncopyable /** * Initialize Plugin functionality on a Target. - * * Plugins should ignore targets they don't recognize. + * + * Called before the target itself is initialized. */ virtual void earlyInitialize(Target&) = 0; /** * Initialize Plugin functionality on a Target. - * * Plugins should ignore targets they don't recognize. + * + * Called after the target is fully initialized. */ virtual void initialize(Target&) = 0; |