blob: 2b62ff98d8731e6221f9d127fc669f3bfa8dd04e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#pragma once
#include <string>
#include <fstream>
#include <iostream>
namespace crepe::api {
class Resource {
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;
std::ifstream file;
};
}
|