aboutsummaryrefslogtreecommitdiff
path: root/backends/fs/abstract-fs-factory.h
diff options
context:
space:
mode:
authorNicola Mettifogo2007-09-19 08:40:12 +0000
committerNicola Mettifogo2007-09-19 08:40:12 +0000
commit258901bab96f0050385a9912c8ea0fe2a41b2d6f (patch)
treea3ae8675b679c9f3b58ac8d97c79369502ea23c1 /backends/fs/abstract-fs-factory.h
parenta89694c0d61a75a960f5bec6c498659c988401cc (diff)
downloadscummvm-rg350-258901bab96f0050385a9912c8ea0fe2a41b2d6f.tar.gz
scummvm-rg350-258901bab96f0050385a9912c8ea0fe2a41b2d6f.tar.bz2
scummvm-rg350-258901bab96f0050385a9912c8ea0fe2a41b2d6f.zip
Merged common/stdafx.h into common/scummsys.h. All referencing files have been updated.
svn-id: r28966
Diffstat (limited to 'backends/fs/abstract-fs-factory.h')
-rw-r--r--backends/fs/abstract-fs-factory.h15
1 files changed, 7 insertions, 8 deletions
diff --git a/backends/fs/abstract-fs-factory.h b/backends/fs/abstract-fs-factory.h
index 79ec3f7520..c4ce277505 100644
--- a/backends/fs/abstract-fs-factory.h
+++ b/backends/fs/abstract-fs-factory.h
@@ -25,7 +25,6 @@
#ifndef ABSTRACT_FILESYSTEM_FACTORY_H
#define ABSTRACT_FILESYSTEM_FACTORY_H
-#include "common/stdafx.h"
#include "common/str.h"
#include "backends/fs/abstract-fs.h"
@@ -35,12 +34,12 @@
class AbstractFilesystemFactory {
public:
typedef Common::String String;
-
+
/**
* Destructor.
*/
virtual ~AbstractFilesystemFactory() {}
-
+
/**
* Returns a node representing the "current directory".
* If your system does not support this concept, you can either try to
@@ -48,7 +47,7 @@ public:
* e.g. the same value as getRoot() returns.
*/
virtual AbstractFilesystemNode *makeCurrentDirectoryFileNode() const = 0;
-
+
/**
* Construct a node based on a path; the path is in the same format as it
* would be for calls to fopen().
@@ -60,17 +59,17 @@ public:
* @param path The path string to create a FilesystemNode for.
*/
virtual AbstractFilesystemNode *makeFileNodePath(const String &path) const = 0;
-
+
/**
* Returns a special node representing the filesystem root.
* The starting point for any file system browsing.
- *
+ *
* On Unix, this will be simply the node for / (the root directory).
* On Windows, it will be a special node which "contains" all drives (C:, D:, E:).
*/
virtual AbstractFilesystemNode *makeRootFileNode() const = 0;
-
-
+
+
/**
* Meta-factory method which returns a concrete AbstractFilesystemFactory
* instance depending on the current architecture.