aboutsummaryrefslogtreecommitdiff
path: root/backends/fs/gp32/gp32-fs-factory.h
diff options
context:
space:
mode:
authorMax Horn2008-05-15 11:40:38 +0000
committerMax Horn2008-05-15 11:40:38 +0000
commitdefc030143487550057cac1fb617d31ce9ab1ab2 (patch)
tree715887c6224f2536333730c79a964846f18107b1 /backends/fs/gp32/gp32-fs-factory.h
parent6206fb2a188b28db426cb85653e8c6bf00d1f1d3 (diff)
downloadscummvm-rg350-defc030143487550057cac1fb617d31ce9ab1ab2.tar.gz
scummvm-rg350-defc030143487550057cac1fb617d31ce9ab1ab2.tar.bz2
scummvm-rg350-defc030143487550057cac1fb617d31ce9ab1ab2.zip
Removed the GP32 port
svn-id: r32139
Diffstat (limited to 'backends/fs/gp32/gp32-fs-factory.h')
-rw-r--r--backends/fs/gp32/gp32-fs-factory.h51
1 files changed, 0 insertions, 51 deletions
diff --git a/backends/fs/gp32/gp32-fs-factory.h b/backends/fs/gp32/gp32-fs-factory.h
deleted file mode 100644
index 7e6cb595ca..0000000000
--- a/backends/fs/gp32/gp32-fs-factory.h
+++ /dev/null
@@ -1,51 +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 GP32_FILESYSTEM_FACTORY_H
-#define GP32_FILESYSTEM_FACTORY_H
-
-#include "common/singleton.h"
-#include "backends/fs/fs-factory.h"
-
-/**
- * Creates GP32FilesystemNode objects.
- *
- * Parts of this class are documented in the base interface class, FilesystemFactory.
- */
-class GP32FilesystemFactory : public FilesystemFactory, public Common::Singleton<GP32FilesystemFactory> {
-public:
- typedef Common::String String;
-
- virtual AbstractFilesystemNode *makeRootFileNode() const;
- virtual AbstractFilesystemNode *makeCurrentDirectoryFileNode() const;
- virtual AbstractFilesystemNode *makeFileNodePath(const String &path) const;
-
-protected:
- GP32FilesystemFactory() {};
-
-private:
- friend class Common::Singleton<SingletonBaseType>;
-};
-
-#endif /*GP32_FILESYSTEM_FACTORY_H*/