container: plugins: root: example: rename Example class

For clarity that this class is separate from plugin's entrypoint.
This commit is contained in:
2026-01-09 12:24:19 -08:00
parent 02e1d563f2
commit 6e7fee92f3
3 changed files with 42 additions and 40 deletions

View File

@@ -57,7 +57,7 @@ class example_cc final
example_cc& operator=(example_cc&&) = default;
public:
//! \brief Example auto-loader
//! \brief Example plugin's auto-loader
//! \param arg String to pass to auto-loader (use-case is plugin-implementation defined)
static void load(const std::string& arg = {})
{
@@ -85,7 +85,7 @@ class example_cc final
common::line(arg);
}
//! \brief Example auto-unloader
//! \brief Example plugin's auto-unloader
//! \param arg String to pass to auto-unloader (use-case is plugin-implementation defined)
static void unload(const std::string& arg = {})
{