aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/Asset.cpp
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-11-13 14:51:02 +0100
committerLoek Le Blansch <loek@pipeframe.xyz>2024-11-13 14:51:02 +0100
commit202725f481e64c4d95e370102ab93d4f8cf4af93 (patch)
tree18c1fccce5369e89b25c9167718707818f16dcfa /src/crepe/Asset.cpp
parent1df510f4a2dbe0fcb8c9f8a34695abf8d33f9ddc (diff)
incorporate feedback on #26
Diffstat (limited to 'src/crepe/Asset.cpp')
-rw-r--r--src/crepe/Asset.cpp13
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(); }