diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-13 14:51:02 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-13 14:51:02 +0100 |
commit | 202725f481e64c4d95e370102ab93d4f8cf4af93 (patch) | |
tree | 18c1fccce5369e89b25c9167718707818f16dcfa /src/crepe/Asset.cpp | |
parent | 1df510f4a2dbe0fcb8c9f8a34695abf8d33f9ddc (diff) |
incorporate feedback on #26
Diffstat (limited to 'src/crepe/Asset.cpp')
-rw-r--r-- | src/crepe/Asset.cpp | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/crepe/Asset.cpp b/src/crepe/Asset.cpp index 8a2a11c..4affd58 100644 --- a/src/crepe/Asset.cpp +++ b/src/crepe/Asset.cpp @@ -3,14 +3,15 @@ #include "Asset.h" using namespace crepe; +using namespace std; -Asset::Asset(const std::string & src) { - // FIXME: restore this - // this->src = std::filesystem::canonical(src); - this->src = src; +// FIXME: restore this +// src(std::filesystem::canonical(src)) +Asset::Asset(const std::string & src) : src(src) { this->file = std::ifstream(this->src, std::ios::in | std::ios::binary); } -const std::istream & Asset::read() { return this->file; } +istream & Asset::get_stream() { return this->file; } + +const string & Asset::get_canonical() const { return this->src; } -const char * Asset::canonical() { return this->src.c_str(); } |