diff options
Diffstat (limited to '')
-rw-r--r-- | src/experimental/filesystem.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/experimental/filesystem.h b/src/experimental/filesystem.h new file mode 100644 index 0000000..0c992a5 --- /dev/null +++ b/src/experimental/filesystem.h | |||
@@ -0,0 +1,24 @@ | |||
1 | #ifndef BU_FILE_SYSTEM_H | ||
2 | #define BU_FILE_SYSTEM_H | ||
3 | |||
4 | namespace Bu | ||
5 | { | ||
6 | /** | ||
7 | * Represents an abstract baseclass for any file organization structure. | ||
8 | * If you're looking for acessing a local filesystem, try Bu::Dir. This | ||
9 | * is used to make switching between different types of filesystems | ||
10 | * seamless. FileSystems could be anything that organizes and grants | ||
11 | * access to file data, local filesystems, FTP servers, zip or myriadfs | ||
12 | * files, etc. | ||
13 | */ | ||
14 | class FileSystem | ||
15 | { | ||
16 | public: | ||
17 | FileSystem(); | ||
18 | virtual ~FileSystem(); | ||
19 | |||
20 | |||
21 | }; | ||
22 | }; | ||
23 | |||
24 | #endif | ||