aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/Resource.h
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-09-29 16:37:12 +0200
committerLoek Le Blansch <loek@pipeframe.xyz>2024-09-29 16:37:12 +0200
commite4a3ef6e324acc8edf9f0797caa244967907a676 (patch)
tree1d468048ada38f8c9cee1501e169b78efda9d7b7 /src/crepe/api/Resource.h
parentfeea4cbb648d67e46b413880ddbf203c88c2a2b1 (diff)
implement audio poc using facade classes
Diffstat (limited to 'src/crepe/api/Resource.h')
-rw-r--r--src/crepe/api/Resource.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/crepe/api/Resource.h b/src/crepe/api/Resource.h
index 2260b1a..2b62ff9 100644
--- a/src/crepe/api/Resource.h
+++ b/src/crepe/api/Resource.h
@@ -11,7 +11,10 @@ public:
Resource(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;