aboutsummaryrefslogtreecommitdiff
path: root/backends/plugins/ps2/ps2-provider.h
diff options
context:
space:
mode:
authorTony Puccinelli2010-07-28 02:05:17 +0000
committerTony Puccinelli2010-07-28 02:05:17 +0000
commitff78cf6771fbbb6a7fd26d00db36c4c72d7a71db (patch)
tree00bb0e8fe4ebaac432cc586bc6499b8e11f781ac /backends/plugins/ps2/ps2-provider.h
parent749d47ba2668421806ef65f693f9a6bc97d6f902 (diff)
downloadscummvm-rg350-ff78cf6771fbbb6a7fd26d00db36c4c72d7a71db.tar.gz
scummvm-rg350-ff78cf6771fbbb6a7fd26d00db36c4c72d7a71db.tar.bz2
scummvm-rg350-ff78cf6771fbbb6a7fd26d00db36c4c72d7a71db.zip
abstracted an ELF plugin provider
svn-id: r51400
Diffstat (limited to 'backends/plugins/ps2/ps2-provider.h')
-rw-r--r--backends/plugins/ps2/ps2-provider.h43
1 files changed, 0 insertions, 43 deletions
diff --git a/backends/plugins/ps2/ps2-provider.h b/backends/plugins/ps2/ps2-provider.h
deleted file mode 100644
index 6a357db63d..0000000000
--- a/backends/plugins/ps2/ps2-provider.h
+++ /dev/null
@@ -1,43 +0,0 @@
-/* ScummVM - Graphic Adventure Engine
- *
- * ScummVM is the legal property of its developers, whose names
- * are too numerous to list here. Please refer to the COPYRIGHT
- * file distributed with this source distribution.
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
-
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
-
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- *
- * $URL$
- * $Id$
- *
- */
-
-#ifndef BACKENDS_PLUGINS_PS2_PS2_PROVIDER_H
-#define BACKENDS_PLUGINS_PS2_PS2_PROVIDER_H
-
-#include "base/plugins.h"
-
-#if defined(DYNAMIC_MODULES) && defined(__PLAYSTATION2__)
-
-class PS2PluginProvider : public FilePluginProvider {
-protected:
- Plugin* createPlugin(const Common::FSNode &node) const;
-
- bool isPluginFilename(const Common::FSNode &node) const;
-
-};
-
-#endif // defined(DYNAMIC_MODULES) && defined(__PLAYSTATION2__)
-
-#endif /* BACKENDS_PLUGINS_PS2_PS2_PROVIDER_H */