aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/Resource.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/crepe/api/Resource.cpp')
-rw-r--r--src/crepe/api/Resource.cpp19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/crepe/api/Resource.cpp b/src/crepe/api/Resource.cpp
deleted file mode 100644
index 6bb081d..0000000
--- a/src/crepe/api/Resource.cpp
+++ /dev/null
@@ -1,19 +0,0 @@
-#include <filesystem>
-
-#include "Resource.h"
-
-using namespace crepe::api;
-
-Resource::Resource(const std::string & src) {
- this->src = std::filesystem::canonical(src);
- this->file = std::ifstream(this->src, std::ios::in | std::ios::binary);
-}
-
-const std::istream & Resource::read() {
- return this->file;
-}
-
-const char * Resource::canonical() {
- return this->src.c_str();
-}
-