Class endstone::PluginLoader¶
ClassList > endstone > PluginLoader
Represents a plugin loader, which handles direct access to specific types of plugins.
#include <endstone/plugin/plugin_loader.h>
Public Functions¶
Type | Name |
---|---|
PluginLoader (Server & server) |
|
PluginLoader (const PluginLoader &) = delete |
|
virtual void | disablePlugin (Plugin & plugin) const |
virtual void | enablePlugin (Plugin & plugin) const |
Server & | getServer () const Retrieves the Server object associated with thePluginLoader . |
virtual std::vector< Plugin * > | loadPlugins (const std::string & directory) = 0 |
PluginLoader & | operator= (const PluginLoader &) = delete |
virtual | ~PluginLoader () = default |
Protected Attributes¶
Type | Name |
---|---|
Server & | server_ |
Public Functions Documentation¶
function PluginLoader [½]¶
function PluginLoader [2/2]¶
function disablePlugin¶
Disables the specified plugin Attempting to disable a plugin that is not enabled will have no effect
Parameters:
plugin
Plugin to disable
function enablePlugin¶
Enables the specified plugin Attempting to enable a plugin that is already enabled will have no effect
Parameters:
plugin
Plugin to enable
function getServer¶
Retrieves the Server object associated with thePluginLoader .
This function returns a reference to the Server object that the PluginLoader is associated with.
Returns:
The Server reference.
function loadPlugins¶
virtual std::vector< Plugin * > endstone::PluginLoader::loadPlugins (
const std::string & directory
) = 0
Loads the plugin contained within the specified directory
Parameters:
directory
Directory to check for plugins
Returns:
A list of all plugins loaded
function operator=¶
function ~PluginLoader¶
Protected Attributes Documentation¶
variable server_¶
The documentation for this class was generated from the following file include/endstone/plugin/plugin_loader.h