@@ -8,10 +8,11 @@ * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #import "OFObject.h" +#import "OFString.h" /** * The OFPlugin class provides a system for loading plugins at runtime. */ @interface OFPlugin: OFObject @@ -23,7 +24,7 @@ * Loads an OFPlugin from a file. * * \param path Path to the OFPlugin file. The suffix is appended automatically. * \return The loaded OFPlugin */ -+ pluginFromFile: (const char*)path; ++ pluginFromFile: (OFString*)path; @end