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