diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-05 14:24:39 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-05 14:24:39 +0200 |
commit | b99e38badb82c5cc79771a77c5f6ea180c67ee4f (patch) | |
tree | 9cc3381095363b8ee8e1ce19130345cc3a9bb375 /src/crepe/Asset.h | |
parent | 202a9ec288ded78771e1f7e4c711a7612b201b9d (diff) |
move Asset from crepe::api to crepe
Diffstat (limited to 'src/crepe/Asset.h')
-rw-r--r-- | src/crepe/Asset.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/crepe/Asset.h b/src/crepe/Asset.h new file mode 100644 index 0000000..736ba44 --- /dev/null +++ b/src/crepe/Asset.h @@ -0,0 +1,24 @@ +#pragma once + +#include <fstream> +#include <iostream> +#include <string> + +namespace crepe { + +class Asset { +public: + Asset(const std::string & src); + +public: + //! Get an input stream to the contents of this resource + const std::istream & read(); + //! Get the canonical path to this resource + const char * canonical(); + +private: + std::string src; + std::ifstream file; +}; + +} // namespace crepe |