diff options
Diffstat (limited to 'src/openvic-dataloader/File.cpp')
-rw-r--r-- | src/openvic-dataloader/File.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/openvic-dataloader/File.cpp b/src/openvic-dataloader/File.cpp new file mode 100644 index 0000000..9b27bf0 --- /dev/null +++ b/src/openvic-dataloader/File.cpp @@ -0,0 +1,9 @@ +#include <openvic-dataloader/File.hpp> + +using namespace ovdl; + +File::File(const char* path) : _path(path) {} + +const char* File::path() const noexcept { + return _path; +}
\ No newline at end of file |