// // Created by mbergmann on 18.12.12. // // #import #ifdef __cplusplus #include // C++ Sword API #endif @protocol FilterProvider; /** * This factory has to be initialized before any Modules are loaded through SwordManager. */ @interface FilterProviderFactory : NSObject + (FilterProviderFactory *)providerFactory; - (void)initWithImpl:(id)aFilterProvider; - (id)get; @end