aboutsummaryrefslogtreecommitdiff
path: root/src/libjin/Filesystem/Filesystem.cpp
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2018-09-02 10:37:13 +0800
committerchai <chaifix@163.com>2018-09-02 10:37:13 +0800
commitbbecfee3b69fd2d2015305f3d04c02f87d4924b0 (patch)
tree00cfdb8302aeca9c8e5a4efe782a10e46c91afd8 /src/libjin/Filesystem/Filesystem.cpp
parent3bb587f0d7c471a70683fa7d26939d21968dea98 (diff)
*update
Diffstat (limited to 'src/libjin/Filesystem/Filesystem.cpp')
-rw-r--r--src/libjin/Filesystem/Filesystem.cpp10
1 files changed, 2 insertions, 8 deletions
diff --git a/src/libjin/Filesystem/Filesystem.cpp b/src/libjin/Filesystem/Filesystem.cpp
index e9b05e3..8089c9d 100644
--- a/src/libjin/Filesystem/Filesystem.cpp
+++ b/src/libjin/Filesystem/Filesystem.cpp
@@ -20,9 +20,6 @@ namespace filesystem
return fs ? fs : (fs = new Filesystem());
}
- /**
- * r is relative path
- */
void Filesystem::mount(const char * path)
{
int err = smtmount(S, path);
@@ -33,9 +30,6 @@ namespace filesystem
}
}
- /**
- *
- */
int Filesystem::read(const char* path, Buffer* buffer)
{
buffer->data = smtread(S, path, &buffer->size);
@@ -64,5 +58,5 @@ namespace filesystem
return smtexists(S, path) == 0;
}
-}
-} \ No newline at end of file
+} // filesystem
+} // jin \ No newline at end of file