diff options
| author | Jordi Vilalta Prat | 2008-05-02 14:30:06 +0000 | 
|---|---|---|
| committer | Jordi Vilalta Prat | 2008-05-02 14:30:06 +0000 | 
| commit | 3f44977885d33ea694df399a83cf198dd85b5fed (patch) | |
| tree | c081843c9cd64d3e077482fbc7f43bbf3b39d087 /backends/plugins/posix/posix-provider.h | |
| parent | 6a98108eac1203eaf1058fa24ad9c80fc9ba45a8 (diff) | |
| download | scummvm-rg350-3f44977885d33ea694df399a83cf198dd85b5fed.tar.gz scummvm-rg350-3f44977885d33ea694df399a83cf198dd85b5fed.tar.bz2 scummvm-rg350-3f44977885d33ea694df399a83cf198dd85b5fed.zip | |
Added support to load plugins from different directories and the ability to specify the default directory from configure.
svn-id: r31816
Diffstat (limited to 'backends/plugins/posix/posix-provider.h')
| -rw-r--r-- | backends/plugins/posix/posix-provider.h | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/backends/plugins/posix/posix-provider.h b/backends/plugins/posix/posix-provider.h index 7a7b780fbe..40c16b3e11 100644 --- a/backends/plugins/posix/posix-provider.h +++ b/backends/plugins/posix/posix-provider.h @@ -30,9 +30,9 @@  #if defined(DYNAMIC_MODULES) && defined(UNIX) -class POSIXPluginProvider : public PluginProvider { -public: -	virtual PluginList getPlugins(); +class POSIXPluginProvider : public FilePluginProvider { +protected: +	Plugin* createPlugin(const Common::String &filename) const;  };  #endif // defined(DYNAMIC_MODULES) && defined(UNIX) | 
