diff options
Diffstat (limited to 'tests/FilesystemTest/src/File.cc')
-rw-r--r-- | tests/FilesystemTest/src/File.cc | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/FilesystemTest/src/File.cc b/tests/FilesystemTest/src/File.cc new file mode 100644 index 0000000..8f3b528 --- /dev/null +++ b/tests/FilesystemTest/src/File.cc @@ -0,0 +1,11 @@ +#include "File.h" + +File::File(const char *Path) +{ + //ctor +} + +File::~File() +{ + //dtor +} |