SockIt
|
Public Member Functions | |
FB::PluginCorePtr | createPlugin (const string &mimetype) |
void | globalPluginInitialize () |
void | globalPluginDeinitialize () |
Definition at line 16 of file Factory.cpp.
FB::PluginCorePtr PluginFactory::createPlugin | ( | const string & | mimetype | ) | [inline] |
Creates a plugin object matching the provided mimetype. If mimetype is empty, returns the default plugin.
Definition at line 24 of file Factory.cpp.
{
return boost::make_shared<SockIt>();
}
void PluginFactory::globalPluginDeinitialize | ( | ) | [inline] |
Performs global deinitialization, or destruction, of the plugin.
Definition at line 44 of file Factory.cpp.
References SockIt::StaticDeinitialize().
{ SockIt::StaticDeinitialize(); }
void PluginFactory::globalPluginInitialize | ( | ) | [inline] |
Performs one-time global initialization of the plugin.
Definition at line 34 of file Factory.cpp.
References SockIt::StaticInitialize().
{ SockIt::StaticInitialize(); }